Skip to content

Commit e2c01be

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ac421a7 commit e2c01be

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sqlite_export_for_ynab/_main.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949

5050
_PACKAGE = "sqlite-export-for-ynab"
5151

52+
5253
async def async_main(argv: Sequence[str] | None = None) -> int:
5354
parser = argparse.ArgumentParser()
5455
parser.add_argument(
@@ -62,7 +63,9 @@ async def async_main(argv: Sequence[str] | None = None) -> int:
6263
action="store_true",
6364
help="**DROP ALL TABLES** and fetch all budget data again.",
6465
)
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+
)
6669

6770
args = parser.parse_args(argv)
6871
db: Path = args.db

0 commit comments

Comments
 (0)