Skip to content

Commit de75f5d

Browse files
authored
Fix bug in axes (#519)
* fix bug in Axes
1 parent 0b2a2fb commit de75f5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim/mobject/coordinate_systems.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class Axes(VGroup, CoordinateSystem):
143143
}
144144

145145
def __init__(self, **kwargs):
146-
CoordinateSystem.__init__(self, **kwargs)
146+
CoordinateSystem.__init__(self)
147147
VGroup.__init__(self, **kwargs)
148148
self.x_axis = self.create_axis(self.x_min, self.x_max, self.x_axis_config)
149149
self.y_axis = self.create_axis(self.y_min, self.y_max, self.y_axis_config)

0 commit comments

Comments
 (0)