Skip to content

Commit

Permalink
fix numpy float
Browse files Browse the repository at this point in the history
  • Loading branch information
giovana-morais committed Oct 3, 2024
1 parent edea1c4 commit e4961e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jams/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,11 @@ def list_namespaces():
# Mapping of js primitives to numpy types
__TYPE_MAP__ = dict(integer=np.int_,
boolean=np.bool_,
number=np.float_,
number=np.float64,
object=np.object_,
array=np.object_,
string=np.object_,
null=np.float_)
null=np.float64)


def __get_dtype(typespec):
Expand Down

0 comments on commit e4961e6

Please sign in to comment.