Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
πŸ› FIX: attempted fix on 3.8 test changing list to typing.List
Browse files Browse the repository at this point in the history
  • Loading branch information
japerry911 committed Nov 5, 2023
1 parent e64c356 commit f7dbf5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prefect_gcp/workers/cloud_run_v2.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re
import shlex
import time
from typing import TYPE_CHECKING, Any, Dict, Literal, Optional
from typing import TYPE_CHECKING, Any, Dict, List, Literal, Optional

from anyio.abc import TaskStatus
from google.api_core.client_options import ClientOptions
Expand Down Expand Up @@ -300,7 +300,7 @@ class CloudRunWorkerV2Variables(BaseVariables):
"If not provided the default Prefect image will be used."
),
)
args: list[str] = Field(
args: List[str] = Field(
default_factory=list,
description=(
"The arguments to pass to the Cloud Run Job V2's entrypoint command."
Expand Down

0 comments on commit f7dbf5c

Please sign in to comment.