Skip to content

Commit 3ec243f

Browse files
committed
pep
1 parent 7c8f197 commit 3ec243f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pandas/io/msgpack/_unpacker.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ from libc.string cimport *
1212
from libc.limits cimport *
1313

1414
from pandas.io.msgpack.exceptions import (BufferFull, OutOfData,
15-
UnpackValueError, ExtraData)
15+
UnpackValueError, ExtraData)
1616
from pandas.io.msgpack import ExtType
1717

1818

pandas/io/parsers.pyx

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ from cpython cimport (PyObject, PyBytes_FromString,
1313
PyUnicode_Check, PyUnicode_AsUTF8String,
1414
PyErr_Occurred, PyErr_Fetch)
1515
from cpython.ref cimport PyObject, Py_XDECREF
16-
from pandas.io.common import ParserError, DtypeWarning, EmptyDataError, ParserWarning
16+
from pandas.io.common import (ParserError, DtypeWarning,
17+
EmptyDataError, ParserWarning)
1718

1819
# Import CParserError as alias of ParserError for backwards compatibility.
1920
# Ultimately, we want to remove this import. See gh-12665 and gh-14479.

0 commit comments

Comments
 (0)