diff --git a/chia/types/blockchain_format/program.py b/chia/types/blockchain_format/program.py index 53c8d05a2c93..a6766b480734 100644 --- a/chia/types/blockchain_format/program.py +++ b/chia/types/blockchain_format/program.py @@ -155,7 +155,7 @@ def run_with_flags(self, max_cost: int, flags: int, args: Any) -> tuple[int, Pro # (2 (1 . self) rest) # # Resulting in a function which places its own arguments after those - # curried in the form of a proper list. + # curried in in the form of a proper list. def curry(self, *args) -> Program: fixed_args: Any = 1 for arg in reversed(args):