Skip to content

Commit 3eeeaf2

Browse files
committed
fixed double assignment
1 parent f0297e6 commit 3eeeaf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim/mobject/types/vectorized_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def set_stroke(
301301
setattr(self, opacity_name, opacity)
302302
if color is not None and background:
303303
if isinstance(color, (list, tuple)):
304-
self.background_stroke_color = color = color
304+
self.background_stroke_color = color
305305
else:
306306
self.background_stroke_color = ManimColor(color)
307307
return self

0 commit comments

Comments
 (0)