Skip to content

Commit

Permalink
Small tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
3b1b committed Feb 9, 2023
1 parent b39fbb6 commit ad40999
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manimlib/mobject/mobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -2178,7 +2178,7 @@ def __getattr__(self, method_name: str):

if (self.is_chaining and has_overridden_animation) or self.overridden_animation:
raise NotImplementedError(
"Method chaining is currently not supported for "
"Method chaining is currently not supported for " + \
"overridden animations"
)

Expand Down Expand Up @@ -2213,7 +2213,7 @@ def set_anim_args(self, **kwargs):

if not self.can_pass_args:
raise ValueError(
"Animation arguments can only be passed by calling ``animate`` "
"Animation arguments can only be passed by calling ``animate`` " + \
"or ``set_anim_args`` and can only be passed once",
)

Expand Down

0 comments on commit ad40999

Please sign in to comment.