We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff5f77d commit 610152bCopy full SHA for 610152b
pyexcel_io/readers/csvr.py
@@ -84,7 +84,7 @@ def __next__(self):
84
if bom_header == BOM_BIG_ENDIAN:
85
self.__endian = BIG_ENDIAN
86
elif self.__endian == LITTLE_ENDIAN:
87
- line = line[self.__zeros_left_in_2_row :]
+ line = line[self.__zeros_left_in_2_row :] # flake8: noqa
88
if self.__endian == LITTLE_ENDIAN:
89
line = line.rstrip()
90
line = line.decode(self.__encoding)
0 commit comments