Skip to content

Commit 1ad379a

Browse files
Update literals.py
1 parent 97377e3 commit 1ad379a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/codegen/literals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def encoded_tuple_values(self) -> list[str]:
141141
return self._encode_collection_values(self.tuple_literals)
142142

143143
def encoded_frozenset_values(self) -> list[str]:
144-
def sort_frozenset_recursive(frozen: frozenset[object]) -> list[object]:
144+
def sort_frozenset_recursive(value: frozenset[object]) -> list[object]:
145145
# even though frozensets are not sorted in python, we need to sort the items here
146146
# to improve the determinism of the generated C file, making it easier to compare
147147
# differences in the C files generated by different versions of your code.

0 commit comments

Comments
 (0)