Skip to content

Commit 1d895b2

Browse files
Remove default= in TypeVar definition
1 parent 401f71d commit 1d895b2

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
@@ -1936,7 +1936,7 @@ def force_direction(self, target_direction: Literal["CW", "CCW"]) -> Self:
19361936
return self
19371937

19381938

1939-
VMobjectT = TypeVar("VMobjectT", bound=VMobject, default=VMobject)
1939+
VMobjectT = TypeVar("VMobjectT", bound=VMobject)
19401940

19411941

19421942
class VGroup(VMobject, Generic[VMobjectT], metaclass=ConvertToOpenGL):

0 commit comments

Comments
 (0)