Skip to content

Commit a4db8f4

Browse files
committed
Update storage type enum
1 parent 9eef888 commit a4db8f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

openlayer/api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
class StorageType(Enum):
2424
"""Storage options for uploads."""
2525

26-
ONPREM = 1
27-
AWS = 2
28-
GCP = 3
29-
AZURE = 4
26+
ONPREM = "local"
27+
AWS = "aws"
28+
GCP = "gcs"
29+
AZURE = "azure"
3030

3131

3232
STORAGE = StorageType.AWS

0 commit comments

Comments
 (0)