Improve mypy runs

This commit is contained in:
Matthias
2022-04-23 11:31:12 +02:00
parent 1120392f39
commit f2912f8815
3 changed files with 5 additions and 4 deletions

View File

@@ -264,7 +264,7 @@ def generate_edge_table(results: dict) -> str:
# Ignore type as floatfmt does allow tuples but mypy does not know that
return tabulate(tabular_data, headers=headers,
floatfmt=floatfmt, tablefmt="orgtbl", stralign="right") # type: ignore
floatfmt=floatfmt, tablefmt="orgtbl", stralign="right")
def _get_resample_from_period(period: str) -> str: