Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenliang123 committed Oct 9, 2024
1 parent f7cf91d commit 94d02cc
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api/extensions/storage/aliyun_oss_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class AliyunOssStorage(BaseStorage):
"""Implementation for aliyun storage."""
"""Implementation for Aliyun OSS storage."""

def __init__(self, app: Flask):
super().__init__(app)
Expand Down
2 changes: 1 addition & 1 deletion api/extensions/storage/aws_s3_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


class AwsS3Storage(BaseStorage):
"""Implementation for s3 storage."""
"""Implementation for Amazon Web Services S3 storage."""

def __init__(self, app: Flask):
super().__init__(app)
Expand Down
2 changes: 1 addition & 1 deletion api/extensions/storage/baidu_obs_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class BaiduObsStorage(BaseStorage):
"""Implementation for baidu obs storage."""
"""Implementation for Baidu OBS storage."""

def __init__(self, app: Flask):
super().__init__(app)
Expand Down
2 changes: 1 addition & 1 deletion api/extensions/storage/google_cloud_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class GoogleCloudStorage(BaseStorage):
"""Implementation for google storage."""
"""Implementation for Google Cloud storage."""

def __init__(self, app: Flask):
super().__init__(app)
Expand Down
2 changes: 1 addition & 1 deletion api/extensions/storage/huawei_obs_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class HuaweiObsStorage(BaseStorage):
"""Implementation for huawei obs storage."""
"""Implementation for Huawei OBS storage."""

def __init__(self, app: Flask):
super().__init__(app)
Expand Down
2 changes: 1 addition & 1 deletion api/extensions/storage/local_fs_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


class LocalFsStorage(BaseStorage):
"""Implementation for local storage."""
"""Implementation for local filesystem storage."""

def __init__(self, app: Flask):
super().__init__(app)
Expand Down
2 changes: 2 additions & 0 deletions api/extensions/storage/oracle_oci_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@


class OracleOCIStorage(BaseStorage):
"""Implementation for Oracle OCI storage."""

def __init__(self, app: Flask):
super().__init__(app)
app_config = self.app.config
Expand Down
2 changes: 1 addition & 1 deletion api/extensions/storage/tencent_cos_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class TencentCosStorage(BaseStorage):
"""Implementation for tencent cos storage."""
"""Implementation for Tencent Cloud COS storage."""

def __init__(self, app: Flask):
super().__init__(app)
Expand Down

0 comments on commit 94d02cc

Please sign in to comment.