Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
2,054 changes: 2,054 additions & 0 deletions manim/mobject/abstract/positionable.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manim/mobject/geometry/arc.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ def __init__(
**kwargs,
)

def surround(
def surround( # type: ignore[override]
self,
mobject: Mobject,
dim_to_match: int = 0,
Expand Down
2 changes: 1 addition & 1 deletion manim/mobject/logo.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def __init__(self, dark_theme: bool = True):
# and thus not yet added to the submobjects of self.
self.anim = anim

def scale(self, scale_factor: float, **kwargs: Any) -> Self:
def scale(self, scale_factor: float, **kwargs: Any) -> Self: # type: ignore[override]
"""Scale the banner by the specified scale factor.

Parameters
Expand Down
Loading