-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Storage] Add
StorageMode
to __init__ (#1223)
* Add storage mode to __init__ * fix
- Loading branch information
1 parent
48e1e63
commit edcfde3
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Sky Data.""" | ||
from sky.data.storage import Storage, StoreType | ||
from sky.data.storage import Storage, StorageMode, StoreType | ||
|
||
__all__ = ['Storage', 'StoreType'] | ||
__all__ = ['Storage', 'StorageMode', 'StoreType'] |