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 538f474 commit 9380036Copy full SHA for 9380036
manim/utils/hashing.py
@@ -112,8 +112,9 @@ 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 immutable, we convert it to a list to be able to modify it.
116
- # It's ok as it's a copy.
+ # 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.
117
+ # It's ok as it is a copy.
118
lst_copy = list(lst_copy)
119
for i, el in enumerate(lst):
120
if not isinstance(lst, tuple):
0 commit comments