Skip to content

Commit

Permalink
RF fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
albertz committed Nov 15, 2023
1 parent 35adf52 commit f7efe87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion returnn/frontend/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


RawTensorTypes = Union[int, float, complex, numpy.number, numpy.ndarray, bool, str]
ItemKeyType = Union[RawTensorTypes, Tensor, slice, Sequence[RawTensorTypes, Tensor, slice]]
ItemKeyType = Union[RawTensorTypes, Tensor, slice, Sequence[Union[RawTensorTypes, Tensor, slice]]]


class GetModelFunc(Protocol):
Expand Down

0 comments on commit f7efe87

Please sign in to comment.