Skip to content

Commit

Permalink
[Fix] Add missing tag manger into cli (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
ileodo authored Apr 29, 2024
1 parent c30b5c7 commit 534eeab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/moneywiz_api/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,15 @@ def main(db_file_path, demo_dump, log_level):
category_manager,
transaction_manager,
investment_holding_manager,
tag_manager,
) = (
moneywiz_api.accessor,
moneywiz_api.account_manager,
moneywiz_api.payee_manager,
moneywiz_api.category_manager,
moneywiz_api.transaction_manager,
moneywiz_api.investment_holding_manager,
moneywiz_api.tag_manager,
)

helper = ShellHelper(moneywiz_api)
Expand All @@ -84,6 +86,7 @@ def main(db_file_path, demo_dump, log_level):
f"{category_manager=}".split("=")[0]: "Category Manageer",
f"{transaction_manager=}".split("=")[0]: "Transaction Manager",
f"{investment_holding_manager=}".split("=")[0]: "Investment Holding Manager",
f"{tag_manager=}".split("=")[0]: "Tag Manager",
f"{helper=}".split("=")[0]: "Shell Helper",
}

Expand Down

0 comments on commit 534eeab

Please sign in to comment.