Skip to content

Commit

Permalink
fix: error from pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
polarmutex committed Oct 24, 2022
1 parent 871e78a commit 3998f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fava_envelope/modules/beancount_envelope.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def envelope_tables(self):
starting_balance = Decimal(0.0)
query_str = (
f"select account, convert(sum(position),'{self.currency}')"
+ " from close on {months[0]}-01 group by 1 order by 1;"
+ f" from close on {months[0]}-01 group by 1 order by 1;"
)
rows = query.run_query(
self.entries, self.options_map, query_str, numberify=True
Expand Down

0 comments on commit 3998f9c

Please sign in to comment.