We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f974e7 commit 6123214Copy full SHA for 6123214
src/jdb_to_nwb/convert_photometry.py
@@ -365,7 +365,7 @@ def import_ppd(ppd_file_path):
365
'pulse_times_2' - Times of rising edges on digital input 2 (ms).
366
'time' - Time of each sample relative to start of recording (ms)
367
'''
368
- with open(, "rb") as f:
+ with open(ppd_file_path, "rb") as f:
369
header_size = int.from_bytes(f.read(2), "little")
370
data_header = f.read(header_size)
371
data = np.frombuffer(f.read(), dtype=np.dtype("<u2"))
0 commit comments