Skip to content

Commit

Permalink
Replacing np.bool with bool
Browse files Browse the repository at this point in the history
  • Loading branch information
mbkumar committed Jun 24, 2024
1 parent e08abfb commit a8dafae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simsopt/_core/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
RealArray = Union[Sequence[Real], NDArray[np.double]]
IntArray = Union[Sequence[Integral], NDArray[np.int_]]
StrArray = Sequence[str]
BoolArray = Union[Sequence[bool], NDArray[np.bool]]
BoolArray = Union[Sequence[bool], NDArray[bool]]
Key = Union[Integral, str]

0 comments on commit a8dafae

Please sign in to comment.