Skip to content

Commit 05925d2

Browse files
authored
CLN: removed unused import (pandas-dev#32518)
1 parent 7147c38 commit 05925d2

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

pandas/_libs/tslibs/np_datetime.pyx

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
from cpython.object cimport Py_EQ, Py_NE, Py_GE, Py_GT, Py_LT, Py_LE
22

3-
from cpython.datetime cimport (datetime, date,
4-
PyDateTime_IMPORT,
5-
PyDateTime_GET_YEAR, PyDateTime_GET_MONTH,
6-
PyDateTime_GET_DAY, PyDateTime_DATE_GET_HOUR,
7-
PyDateTime_DATE_GET_MINUTE,
8-
PyDateTime_DATE_GET_SECOND,
9-
PyDateTime_DATE_GET_MICROSECOND)
3+
from cpython.datetime cimport (
4+
PyDateTime_DATE_GET_HOUR,
5+
PyDateTime_DATE_GET_MICROSECOND,
6+
PyDateTime_DATE_GET_MINUTE,
7+
PyDateTime_DATE_GET_SECOND,
8+
PyDateTime_GET_DAY,
9+
PyDateTime_GET_MONTH,
10+
PyDateTime_GET_YEAR,
11+
PyDateTime_IMPORT,
12+
)
1013
PyDateTime_IMPORT
1114

1215
from numpy cimport int64_t

0 commit comments

Comments
 (0)