Skip to content

Commit

Permalink
comment update
Browse files Browse the repository at this point in the history
  • Loading branch information
landscapepainter committed Nov 19, 2023
1 parent b1afc00 commit e35817e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions sky/data/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -1262,8 +1262,8 @@ def _get_bucket(self) -> Tuple[StorageHandle, bool]:
# This handle links to sky managed storage if it exists.
handle = global_user_state.get_handle_from_storage_name(
self.name)
# If no handle is found, it implies the bucket is created
# externally and not managed by sky. For mounting such
# If handle is None, it implies the bucket is created
# externally and not managed by Skypilot. For mounting such
# externally created buckets, users must provide the
# bucket's URL as 'source'.
if handle is None:
Expand Down Expand Up @@ -1722,8 +1722,8 @@ def _get_bucket(self) -> Tuple[StorageHandle, bool]:
# This handle links to sky managed storage if it exists.
handle = global_user_state.get_handle_from_storage_name(
self.name)
# If no handle is found, it implies the bucket is created
# externally and not managed by sky. For mounting such
# If handle is None, it implies the bucket is created
# externally and not managed by Skypilot. For mounting such
# externally created buckets, users must provide the
# bucket's URL as 'source'.
if handle is None:
Expand Down Expand Up @@ -2104,8 +2104,8 @@ def _get_bucket(self) -> Tuple[StorageHandle, bool]:
# This handle links to sky managed storage if it exists.
handle = global_user_state.get_handle_from_storage_name(
self.name)
# If no handle is found, it implies the bucket is created
# externally and not managed by sky. For mounting such
# If handle is None, it implies the bucket is created
# externally and not managed by Skypilot. For mounting such
# externally created buckets, users must provide the
# bucket's URL as 'source'.
if handle is None:
Expand Down Expand Up @@ -2586,8 +2586,8 @@ def _get_bucket(self) -> Tuple[StorageHandle, bool]:
# This handle links to sky managed storage if it exists.
handle = global_user_state.get_handle_from_storage_name(
self.name)
# If no handle is found, it implies the bucket is created
# externally and not managed by sky. For mounting such
# If handle is None, it implies the bucket is created
# externally and not managed by Skypilot. For mounting such
# externally created buckets, users must provide the
# bucket's URL as 'source'.
if handle is None:
Expand Down

0 comments on commit e35817e

Please sign in to comment.