Specify type in bind_to_graph

This commit is contained in:
Grant Sanderson
2023-03-10 11:04:49 -08:00
parent 6d0b586597
commit 392019fc6e

View File

@ -239,7 +239,7 @@ class CoordinateSystem(ABC):
def bind_graph_to_func(
self,
graph: VMobject,
func: Callable[[Vect3], Vect3],
func: Callable[[VectN], VectN],
jagged: bool = False,
get_discontinuities: Optional[Callable[[], Vect3]] = None
) -> VMobject: