statement_reconciler: switch to generator expression
This commit is contained in:
parent
45bc99e9ac
commit
52ea12d4cf
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue