Skip to content

Commit 0c49ace

Browse files
committed
Fix linting: remove quotes from type annotation
1 parent bc3aa20 commit 0c49ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/copilot/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def __init__(self, options: Optional[CopilotClientOptions] = None):
157157
self._state: ConnectionState = "disconnected"
158158
self._sessions: dict[str, CopilotSession] = {}
159159
self._sessions_lock = threading.Lock()
160-
self._models_cache: Optional[list["ModelInfo"]] = None
160+
self._models_cache: Optional[list[ModelInfo]] = None
161161
self._models_cache_lock = threading.Lock()
162162

163163
def _parse_cli_url(self, url: str) -> tuple[str, int]:

0 commit comments

Comments
 (0)