Skip to content

Commit 610152b

Browse files
committed
💚 suppress flake8 warning for space before colon
1 parent ff5f77d commit 610152b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyexcel_io/readers/csvr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __next__(self):
8484
if bom_header == BOM_BIG_ENDIAN:
8585
self.__endian = BIG_ENDIAN
8686
elif self.__endian == LITTLE_ENDIAN:
87-
line = line[self.__zeros_left_in_2_row :]
87+
line = line[self.__zeros_left_in_2_row :] # flake8: noqa
8888
if self.__endian == LITTLE_ENDIAN:
8989
line = line.rstrip()
9090
line = line.decode(self.__encoding)

0 commit comments

Comments
 (0)