Skip to content
Snippets Groups Projects

Průvodce soutěží pro garanty

Merged
Martin Marešrequested to merge
mj/workflow into devel
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -123,7 +123,7 @@ def read(file: IO, fmt: FileFormat, row_class: Type[Row]):
if not any(h in columns for h in header):
raise MissingHeaderError()
for h in header:
if not h in columns:
if h not in columns:
best_matches = difflib.get_close_matches(h, columns, n=1, cutoff=0.8)
if best_matches:
warnings.append(
Loading