Skip to content

Commit 4093005

Browse files
committed
mypy error fix
1 parent ca5fb1e commit 4093005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ols/src/llms/providers/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class LLMProvidersRegistry:
1313
"""Registry for LLM providers."""
1414

15-
llm_providers: ClassVar = {}
15+
llm_providers: ClassVar[dict[str, Callable]] = {}
1616

1717
@classmethod
1818
def register(cls, provider_type: str, llm_provider: Callable) -> None:

0 commit comments

Comments
 (0)