Skip to content

Commit

Permalink
cli: fix type and default arg for filename
Browse files Browse the repository at this point in the history
  • Loading branch information
yagebu committed Nov 5, 2023
1 parent 87f350b commit e23773e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fava/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
@click.version_option(version=__version__, prog_name="fava")
def main(
*,
filenames: tuple[str] = ("",),
filenames: tuple[str, ...] = (),
port: int = 5000,
host: str = "localhost",
prefix: str | None = None,
Expand Down

0 comments on commit e23773e

Please sign in to comment.