Skip to content

Commit

Permalink
Fix typo for double type.
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine DECHAUME committed Dec 1, 2022
1 parent 41d1e32 commit 5ac44da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydantic_numpy/dtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ def validate(cls, val: Any, field: ModelField):
return val


class dobble(np.float64, _BaseDType):
class double(np.float64, _BaseDType):
pass


float64 = dobble
float64 = double


class single(np.float32, _BaseDType):
Expand Down

0 comments on commit 5ac44da

Please sign in to comment.