[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-10-30 09:08:11 +00:00
committed by GitHub
parent 8cbd124b80
commit eb3b5f751a
32 changed files with 151 additions and 142 deletions

View File

@ -12,7 +12,7 @@ class ProviderConfigCache(Protocol):
Interface for provider configuration cache operations
"""
def get(self) -> Optional[dict[str, Any]]:
def get(self) -> dict[str, Any] | None:
"""Get cached provider configuration"""
...