Skip to content

Commit 7c2456b

Browse files
committed
Fix a pyright error and bump the pyright action to v3
1 parent ca8712c commit 7c2456b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Run Pyright (Pylance equivalent)
4646
id: pyright
4747
continue-on-error: true
48-
uses: jakebailey/pyright-action@v2
48+
uses: jakebailey/pyright-action@v3
4949
with:
5050
pylance-version: latest-release
5151

src/a2a/contrib/tasks/vertex_task_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class VertexTaskStore(TaskStore):
3232

3333
def __init__(
3434
self,
35-
client: 'vertexai.Client', # type: ignore
35+
client: vertexai.Client, # type: ignore
3636
agent_engine_resource_id: str,
3737
) -> None:
3838
"""Initializes the VertexTaskStore.

0 commit comments

Comments
 (0)