Skip to content

Commit

Permalink
feat: turn on emit_filing_account by default
Browse files Browse the repository at this point in the history
Else, we are dependent on the order of postings determined by Python
  • Loading branch information
redstreet committed Oct 13, 2024
1 parent 69b95c2 commit 07d972d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def build_metadata(self, file, metatype=None, data={}):
# This 'filing_account' is read by a patch to bean-extract so it can output transactions to
# a file that corresponds with filing_account, when the one-file-per-account feature is
# used.
if self.config.get("emit_filing_account_metadata"):
if not self.config.get("emit_filing_account_metadata", False):
acct = self.config.get("filing_account", self.config.get("main_account", None))
return {"filing_account": acct}
return {}

0 comments on commit 07d972d

Please sign in to comment.