Skip to content

Commit

Permalink
Fix name of .db file
Browse files Browse the repository at this point in the history
  • Loading branch information
anze3db committed Aug 4, 2023
1 parent 432bf77 commit 21b5658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/words_tui/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@click.group(context_settings={"help_option_names": ["-h", "--help"]}, invoke_without_command=True)
@click.version_option(version=__version__, prog_name="words-tui")
@click.option("--db", "-d", envvar="WORDS_TUI_DB", default=Path.home() / ".write-tui.db", help="Database file to use")
@click.option("--db", "-d", envvar="WORDS_TUI_DB", default=Path.home() / ".words-tui.db", help="Database file to use")
def words_tui(db: str):
init_db(db)
WordsTui().run()

0 comments on commit 21b5658

Please sign in to comment.