diff --git a/conservancy_beancount/reconcile/helper.py b/conservancy_beancount/reconcile/helper.py index 3ca1121..646efd4 100644 --- a/conservancy_beancount/reconcile/helper.py +++ b/conservancy_beancount/reconcile/helper.py @@ -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.