Changeset - 7f7f325f7344
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 17 months ago 2023-01-11 08:36:42
ben@sturm.com.au
reconcile.helper: Appease code linter
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/reconcile/helper.py
Show inline comments
...
 
@@ -56,13 +56,13 @@ def max_column_widths(rows: List) -> List[int]:
 
            for i, val in enumerate(row):
 
                length = len(str(val))
 
                maxes[i] = max(maxes[i], length)
 
        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.
 
    """
 
    output = io.StringIO()
 
    if headers:
0 comments (0 inline, 0 general)