Skip to content

Commit

Permalink
Fix linter bug that none of our locally configured linters picked up
Browse files Browse the repository at this point in the history
  • Loading branch information
sjahl committed Jul 12, 2024
1 parent 55dcf5f commit 4f0e26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/deployctl/subcommands/browser_deployments.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def list_deployments() -> None:
print(deployment[len("gnomad-browser-") :])


def create_deployment(name: str, api_replicas_count: int, browser_tag: str = None, api_tag: str = None) -> None:
def create_deployment(name: str, api_replicas_count: int = None, browser_tag: str = None, api_tag: str = None) -> None:
if not name:
name = datetime.datetime.now().strftime("%Y%m%d-%H%M")
else:
Expand Down

0 comments on commit 4f0e26a

Please sign in to comment.