|
@@ -8,9 +8,9 @@ from .enums import RemoteSettingsSourceName
|
|
|
|
|
|
|
|
|
class RemoteSettingsSourceConfig(ApolloSettingsSourceInfo):
|
|
|
- REMOTE_SETTINGS_SOURCE_NAME: Optional[RemoteSettingsSourceName] = Field(
|
|
|
+ REMOTE_SETTINGS_SOURCE_NAME: RemoteSettingsSourceName | str = Field(
|
|
|
description="name of remote config source",
|
|
|
- default=None,
|
|
|
+ default="",
|
|
|
)
|
|
|
|
|
|
|