Skip to content

Commit

Permalink
fix linting breaking mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
strickvl committed Nov 29, 2023
1 parent d6b37d1 commit cd98d54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mlstacks/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def deploy(
# generate random bucket name
letters = string.ascii_lowercase + string.digits
random_bucket_suffix = "".join(
random.choice(letters)
for _ in range(6) # noqa: S311
random.choice(letters) # noqa: S311
for _ in range(6)
)
random_bucket_name = (
f"{DEFAULT_REMOTE_STATE_BUCKET_NAME}-{random_bucket_suffix}"
Expand Down

0 comments on commit cd98d54

Please sign in to comment.