💚 suppress flake8 warning for space before colon

This commit is contained in:
chfw 2018-08-23 19:13:20 +01:00
parent ff5f77de6e
commit 610152b9b5
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class CSVMemoryMapIterator(compact.Iterator):
if bom_header == BOM_BIG_ENDIAN:
self.__endian = BIG_ENDIAN
elif self.__endian == LITTLE_ENDIAN:
line = line[self.__zeros_left_in_2_row :]
line = line[self.__zeros_left_in_2_row :] # flake8: noqa
if self.__endian == LITTLE_ENDIAN:
line = line.rstrip()
line = line.decode(self.__encoding)