Skip to content

Commit 6123214

Browse files
committed
small typo edit
1 parent 3f974e7 commit 6123214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jdb_to_nwb/convert_photometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def import_ppd(ppd_file_path):
365365
'pulse_times_2' - Times of rising edges on digital input 2 (ms).
366366
'time' - Time of each sample relative to start of recording (ms)
367367
'''
368-
with open(, "rb") as f:
368+
with open(ppd_file_path, "rb") as f:
369369
header_size = int.from_bytes(f.read(2), "little")
370370
data_header = f.read(header_size)
371371
data = np.frombuffer(f.read(), dtype=np.dtype("<u2"))

0 commit comments

Comments
 (0)