We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc94d6b commit 538f474Copy full SHA for 538f474
manim/utils/hashing.py
@@ -112,7 +112,7 @@ def _iter_check_list(lst):
112
# A deepcopy isn't necessary as it is already recursive.
113
lst_copy = copy.copy(lst)
114
if isinstance(lst, tuple):
115
- # NOTE : Sometimes a tuple can pass through this function. As a tuple is unmutable, we convert it to a list to be able to modify it.
+ # NOTE : Sometimes a tuple can pass through this function. As a tuple is immutable, we convert it to a list to be able to modify it.
116
# It's ok as it's a copy.
117
lst_copy = list(lst_copy)
118
for i, el in enumerate(lst):
0 commit comments