Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
boromir674 committed Mar 14, 2024
1 parent 98113ff commit 071bc05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/biskotakigold/__main__.py
Expand Up @@ -14,4 +14,4 @@
from biskotakigold.cli import main

if __name__ == "__main__": # pragma: no cover
main(prog_name="biskotakigold")
main(prog_name="biskotakigold") # pylint: disable=unexpected-keyword-arg
2 changes: 1 addition & 1 deletion src/biskotakigold/cli.py
Expand Up @@ -39,7 +39,7 @@ def main(
"""
try:
pass
except Exception as error:
except Exception as error: # pylint: disable=broad-except
click.echo(error)
sys.exit(1)

Expand Down

0 comments on commit 071bc05

Please sign in to comment.