Skip to content

Commit

Permalink
Minor: typo fix. (#3830)
Browse files Browse the repository at this point in the history
  • Loading branch information
concretevitamin authored Aug 14, 2024
1 parent 1c32aa4 commit 9e50959
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sky/data/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ def add_store(self,
logger.info(f'Storage type {store_type} already exists under '
f'storage account {storage_account_name!r}.')
else:
logger.info(f'Storage type {store_type} already exist.')
logger.info(f'Storage type {store_type} already exists.')
return self.stores[store_type]

store_cls: Type[AbstractStore]
Expand Down Expand Up @@ -2123,7 +2123,7 @@ def initialize(self):
"""Initializes the AZ Container object on the cloud.
Initialization involves fetching container if exists, or creating it if
it does not. Also, it checks for the existance of the storage account
it does not. Also, it checks for the existence of the storage account
if provided by the user and the resource group is inferred from it.
If not provided, both are created with a default naming conventions.
Expand Down Expand Up @@ -2186,7 +2186,7 @@ def _get_storage_account_and_resource_group(
Raises:
StorageBucketCreateError: If storage account attempted to be
created already exists
created already exists.
NonExistentStorageAccountError: When storage account provided
either through config.yaml or local db does not exist under
user's subscription ID.
Expand Down

0 comments on commit 9e50959

Please sign in to comment.