diff --git a/conservancy_beancount/reconcile/statement_reconciler.py b/conservancy_beancount/reconcile/statement_reconciler.py index d5e2752..67e491a 100644 --- a/conservancy_beancount/reconcile/statement_reconciler.py +++ b/conservancy_beancount/reconcile/statement_reconciler.py @@ -834,7 +834,7 @@ def main( AND date >= {begin_date} AND date <= {end_date}""" _, result_rows = run_query(entries, options, query) - books_trans = sort_records([standardize_beancount_record(row) for row in result_rows]) + books_trans = sort_records(standardize_beancount_record(row) for row in result_rows) # Apply two passes of matching, one for standard matches and one # for subset matches.