chore: add missing @override decorator to api/configs (#37006)

Co-authored-by: mac <mac@1234.local>
This commit is contained in:
Siyu/Audrey Xiao 2026-06-03 17:11:50 +08:00 committed by GitHub
parent 57b573d02b
commit 02e1a60cde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,7 @@ class RemoteSettingsSourceFactory(PydanticBaseSettingsSource):
def get_field_value(self, field: FieldInfo, field_name: str) -> tuple[Any, str, bool]:
raise NotImplementedError
@override
def __call__(self) -> dict[str, Any]:
current_state = self.current_state
remote_source_name = current_state.get("REMOTE_SETTINGS_SOURCE_NAME")