Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed May 6, 2024
1 parent d38c446 commit 51e0a6f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/viser/transforms/utils/_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from typing import TYPE_CHECKING, Callable, Tuple, Type, TypeVar, Union, cast

import numpy as onp
from jaxlie.hints import Array

if TYPE_CHECKING:
from .._base import MatrixLieGroup
Expand Down Expand Up @@ -52,7 +51,7 @@ def _wrap(cls: Type[T]) -> Type[T]:

TupleOfBroadcastable = TypeVar(
"TupleOfBroadcastable",
bound="Tuple[Union[MatrixLieGroup, Array], ...]",
bound="Tuple[Union[MatrixLieGroup, onp.ndarray], ...]",
)


Expand Down

0 comments on commit 51e0a6f

Please sign in to comment.