Skip to content

Commit

Permalink
python3.9 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Sep 1, 2024
1 parent 9ddb875 commit b09b85f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flopy4/attrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
# types FloPy accepts in input data contexts.

Scalar = Union[bool, int, float, str, Path]
Record = Dict[str, Union[Scalar | List[Scalar]]]
List = List[Scalar | Record]
Record = Dict[str, Union[Scalar, List[Scalar]]]
List = List[Union[Scalar, Record]]
Array = ArrayLike
Table = DataFrame
Param = Union[Scalar, Record, List, Array, Table]
Expand Down

0 comments on commit b09b85f

Please sign in to comment.