Skip to content

Commit 2625ca7

Browse files
committed
fix additional import
1 parent bc15141 commit 2625ca7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

neo/rawio/neuralynxrawio/neuralynxrawio.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
_spike_channel_dtype,
5454
_event_channel_dtype,
5555
)
56-
from operator import itemgetter
5756
import numpy as np
5857
import os
5958
import pathlib

neo/rawio/neuralynxrawio/nlxheader.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import dateutil
21
from packaging.version import Version
32
import os
43
import re
@@ -317,7 +316,7 @@ def _setTimeDate(self, txt_header):
317316
"""
318317
Read time and date from text of header
319318
"""
320-
319+
import dateutil
321320
# opening time
322321
sr = NlxHeader._openDatetime1_pat.search(txt_header)
323322
if not sr: sr=NlxHeader._openDatetime2_pat.search(txt_header)

0 commit comments

Comments
 (0)