Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace numpy.asscalar() with numpy.ndarray.item() #1056

Merged
merged 1 commit into from
Jul 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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