Skip to content

Commit f2a6868

Browse files
committed
added pesky blank lines - E302 expected 2 blank lines, found 1 in parsers.pyx
1 parent cd1099c commit f2a6868

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/_libs/parsers.pyx

+4-3
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,14 @@ cdef extern from "parser/io.h":
275275

276276
DEFAULT_CHUNKSIZE = 256 * 1024
277277

278-
# common NA values
279-
# no longer excluding inf representations
280-
# '1.#INF','-1.#INF', '1.#INF000000',
278+
281279
def c_type_conv(st):
282280
cdef bytes py_bytes = st.encode()
283281
return py_bytes
284282

283+
# common NA values
284+
# no longer excluding inf representations
285+
# '1.#INF','-1.#INF', '1.#INF000000',
285286
_NA_VALUES = [c_type_conv(x) for x in parsers._NA_VALUES]
286287

287288

0 commit comments

Comments
 (0)