Skip to content

Commit

Permalink
feat(cli): correct code style
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent-laporte-pro committed Apr 24, 2024
1 parent 4117b6f commit 8e560c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/antares_web_installer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ def main():
install_cli(sys.argv[1:])


if __name__ == '__main__':
if __name__ == "__main__":
main()
2 changes: 1 addition & 1 deletion src/antares_web_installer/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


@click.command()
@click.argument('target_dir', type=click.Path())
@click.argument("target_dir", type=click.Path())
def install_cli(target_dir):
"""
Install Antares Web.
Expand Down

0 comments on commit 8e560c7

Please sign in to comment.