Skip to content

Commit

Permalink
adds qif and mny extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Oct 15, 2024
1 parent 2295f08 commit 3bbd5cb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nomina/book_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,13 @@ def setup_ui(self):
with ui.row() as self.summary_row:
self.book_html = ui.html("Welcome to Nomina!")
if not self.is_local:
extensions = {"Ledgerbook": ".yaml", "beancount": ".beancount", "Money-Zip":".zip"}
extensions = {
"Ledgerbook": ".yaml",
"beancount": ".beancount",
"MSMoney-Zip":".zip",
"MSMoney": ".mny",
"Quicken": ".qif"
}
self.example_selector = FileSelector(
path=self.solution.root_path,
handler=self.read_and_optionally_render,
Expand Down

0 comments on commit 3bbd5cb

Please sign in to comment.