mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Use super()
This commit is contained in:
parent
369a7fc455
commit
31e6aa2ae0
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ class ImageMobject(Mobject):
|
|||
path = get_full_raster_image_path(filename)
|
||||
self.image = Image.open(path)
|
||||
self.texture_paths = {"Texture": path}
|
||||
Mobject.__init__(self, **kwargs)
|
||||
super().__init__(**kwargs)
|
||||
|
||||
def init_points(self):
|
||||
self.points = np.array([UL, DL, UR, DR])
|
||||
|
|
Loading…
Add table
Reference in a new issue