fixed pep8 errors
This commit is contained in:
parent
9506a106f4
commit
bdfb86bd0f
|
@ -16,7 +16,7 @@ def geslabt001_to_sheet(in_tsv_file_path: Path, out_tsv_file_path: Path):
|
||||||
#
|
#
|
||||||
# N° commande Souche Libellé commande Date commande Raison sociale fournisseur Montant consommé sur exercice antérieur Montant consommé sur l'exercice Montant réservé Montant facturé Code origine Nature dépense Statut Cde groupée
|
# N° commande Souche Libellé commande Date commande Raison sociale fournisseur Montant consommé sur exercice antérieur Montant consommé sur l'exercice Montant réservé Montant facturé Code origine Nature dépense Statut Cde groupée
|
||||||
if re.match(r'^Entité dépensière', line):
|
if re.match(r'^Entité dépensière', line):
|
||||||
ignore_line = True
|
ignore_line = True # noqa
|
||||||
is_table_header = re.match(r'^N° commande', line) is not None
|
is_table_header = re.match(r'^N° commande', line) is not None
|
||||||
# 19,572.00 19AESMCJ CAMERA ZYLA 5.5 sCMOS 04/11/19 ANDOR TECHNOLOGY LIMITED 0.00 13,681.56 0.00 0.00 635991 IM
|
# 19,572.00 19AESMCJ CAMERA ZYLA 5.5 sCMOS 04/11/19 ANDOR TECHNOLOGY LIMITED 0.00 13,681.56 0.00 0.00 635991 IM
|
||||||
if is_table_header and not table_header_has_been_written:
|
if is_table_header and not table_header_has_been_written:
|
||||||
|
|
Loading…
Reference in New Issue