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

Commit

Permalink
πŸ› FIX: fix missing optional and remove | None
Browse files Browse the repository at this point in the history
  • Loading branch information
japerry911 committed Oct 27, 2023
1 parent 23f8935 commit 459b183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prefect_gcp/cloud_run_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ class CloudRunJobV2(Infrastructure):
@sync_compatible
async def run(
self,
task_status: TaskStatus | None = None,
task_status: Optional[TaskStatus] = None,
) -> CloudRunJobV2Result:
with self._get_client() as cr_client:
await run_sync_in_worker_thread(
Expand Down

0 comments on commit 459b183

Please sign in to comment.