Skip to content

Commit

Permalink
CLN: removed unused import (#32518)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaharNaveh authored Mar 12, 2020
1 parent 7147c38 commit 05925d2
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions pandas/_libs/tslibs/np_datetime.pyx
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from cpython.object cimport Py_EQ, Py_NE, Py_GE, Py_GT, Py_LT, Py_LE

from cpython.datetime cimport (datetime, date,
PyDateTime_IMPORT,
PyDateTime_GET_YEAR, PyDateTime_GET_MONTH,
PyDateTime_GET_DAY, PyDateTime_DATE_GET_HOUR,
PyDateTime_DATE_GET_MINUTE,
PyDateTime_DATE_GET_SECOND,
PyDateTime_DATE_GET_MICROSECOND)
from cpython.datetime cimport (
PyDateTime_DATE_GET_HOUR,
PyDateTime_DATE_GET_MICROSECOND,
PyDateTime_DATE_GET_MINUTE,
PyDateTime_DATE_GET_SECOND,
PyDateTime_GET_DAY,
PyDateTime_GET_MONTH,
PyDateTime_GET_YEAR,
PyDateTime_IMPORT,
)
PyDateTime_IMPORT

from numpy cimport int64_t
Expand Down

0 comments on commit 05925d2

Please sign in to comment.