From 7f7f325f7344a0542adb82af0faeec9a256e390c Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Wed, 11 Jan 2023 19:10:40 +1100 Subject: [PATCH] reconcile.helper: Appease code linter --- conservancy_beancount/reconcile/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.