-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
13 changes: 9 additions & 4 deletions
13
packages/settings-library/src/settings_library/aws_s3_cli.py
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,11 +1,16 @@ | ||
from typing import Annotated | ||
|
||
from pydantic import Field | ||
|
||
from .base import BaseCustomSettings | ||
from .s3 import S3Settings | ||
|
||
|
||
class AwsS3CliSettings(BaseCustomSettings): | ||
AWS_S3_CLI_S3: S3Settings = Field( | ||
default=None, | ||
description="These settings intentionally do not use auto_default_from_env=True because we might want to turn them off if RClone is enabled.", | ||
) | ||
AWS_S3_CLI_S3: Annotated[ | ||
S3Settings, | ||
Field( | ||
description="These settings intentionally do not use auto_default_from_env=True " | ||
"because we might want to turn them off if RClone is enabled.", | ||
), | ||
] |
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