reconcile.helper: Appease code linter

This commit is contained in:
Ben Sturmfels 2023-01-11 19:10:40 +11:00
parent 9be7fdd95f
commit 7f7f325f73
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -59,7 +59,7 @@ def max_column_widths(rows: List) -> List[int]:
return maxes
def tabulate(rows: List, headers: List=None) -> str:
def tabulate(rows: List, headers: List = None) -> str:
"""Format a table of data as a string.
Implemented here to avoid adding dependency on "tabulate" package.