Skip to content

Commit

Permalink
Fix type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
gerlero committed Mar 22, 2024
1 parent a7979cf commit 7d33b93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foamlib/_dictionaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def value(
int,
float,
Sequence[Union[int, float, Sequence[Union[int, float]]]],
NDArray[np.generic],
"NDArray[np.generic]",
],
) -> None:
self["value"] = value
Expand Down Expand Up @@ -443,7 +443,7 @@ def internal_field(
int,
float,
Sequence[Union[int, float, Sequence[Union[int, float]]]],
NDArray[np.generic],
"NDArray[np.generic]",
],
) -> None:
self["internalField"] = value
Expand Down

0 comments on commit 7d33b93

Please sign in to comment.