Add tests for app/print_table.py

This commit is contained in:
2022-07-10 18:15:04 +01:00
parent 20c5357672
commit 3b208c4d32
2 changed files with 20 additions and 1 deletions

View File

@ -18,6 +18,6 @@ def generate_prefix_string(prefixes: list) -> Union[str, None]:
return None
def print_table(table_data) -> None:
def print_table(table_data) -> None: # pragma: no cover
"""Print table generated by tabulate."""
print(tabulate(table_data))