Skip to content

Commit

Permalink
fix message display
Browse files Browse the repository at this point in the history
  • Loading branch information
strickvl committed Sep 18, 2023
1 parent 4ad758b commit d3e688f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mlstacks/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

from mlstacks.analytics import client as analytics_client
from mlstacks.constants import (
DEFAULT_REMOTE_STATE_BUCKET_NAME,
MLSTACKS_PACKAGE_NAME,
)
from mlstacks.enums import AnalyticsEventsEnum
Expand Down Expand Up @@ -94,7 +95,7 @@ def deploy(
random.choice(letters) for _ in range(6) # noqa: S311
)
random_bucket_name = (
f"DEFAULT_REMOTE_STATE_BUCKET_NAME-{random_bucket_suffix}"
f"{DEFAULT_REMOTE_STATE_BUCKET_NAME}-{random_bucket_suffix}"
)

# Remote state deployment
Expand Down

0 comments on commit d3e688f

Please sign in to comment.