We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac421a7 commit e2c01beCopy full SHA for e2c01be
sqlite_export_for_ynab/_main.py
@@ -49,6 +49,7 @@
49
50
_PACKAGE = "sqlite-export-for-ynab"
51
52
+
53
async def async_main(argv: Sequence[str] | None = None) -> int:
54
parser = argparse.ArgumentParser()
55
parser.add_argument(
@@ -62,7 +63,9 @@ async def async_main(argv: Sequence[str] | None = None) -> int:
62
63
action="store_true",
64
help="**DROP ALL TABLES** and fetch all budget data again.",
65
)
- parser.add_argument( "--version", action="store_true", help="Print the version and exit." )
66
+ parser.add_argument(
67
+ "--version", action="store_true", help="Print the version and exit."
68
+ )
69
70
args = parser.parse_args(argv)
71
db: Path = args.db
0 commit comments