Skip to content

Commit 9380036

Browse files
Update manim/utils/hashing.py
Co-authored-by: Benjamin Hackl <[email protected]>
1 parent 538f474 commit 9380036

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

manim/utils/hashing.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,9 @@ def _iter_check_list(lst):
112112
# A deepcopy isn't necessary as it is already recursive.
113113
lst_copy = copy.copy(lst)
114114
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.
115+
# NOTE: Sometimes a tuple can pass through this function. As a tuple
116+
# is immutable, we convert it to a list to be able to modify it.
117+
# It's ok as it is a copy.
117118
lst_copy = list(lst_copy)
118119
for i, el in enumerate(lst):
119120
if not isinstance(lst, tuple):

0 commit comments

Comments
 (0)