Skip to content

Commit

Permalink
Merge pull request #1056 from dandi/asscalar
Browse files Browse the repository at this point in the history
Replace numpy.asscalar() with numpy.ndarray.item()
  • Loading branch information
yarikoptic committed Jul 13, 2022
2 parents 50ca7b0 + b70707e commit 785d143
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dandi/pynwb_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from fscacher import PersistentCache
import h5py
import hdmf
import numpy as np
import pynwb
from pynwb import NWBHDF5IO
import semantic_version
Expand Down Expand Up @@ -214,7 +213,7 @@ def _get_pynwb_metadata(path: Union[str, Path]) -> Dict[str, Any]:
out.update(dandi_icephys.fields)
# Go through devices and see if there any probes used to record this file
probe_ids = [
np.asscalar(v.probe_id) # .asscalar to avoid numpy types
v.probe_id.item() # .item to avoid numpy types
for v in getattr(nwb, "devices", {}).values()
if hasattr(v, "probe_id") # duck typing
]
Expand Down

0 comments on commit 785d143

Please sign in to comment.