Skip to content

Commit

Permalink
Fix incompatible type
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojciech Januszek committed Jun 3, 2022
1 parent 93cbc6d commit d5c4378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/google/cloud/sensors/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(
workflow_id: str,
execution_id: str,
location: str,
project_id: str,
project_id: Optional[str] = None,
success_states: Optional[Set[Execution.State]] = None,
failure_states: Optional[Set[Execution.State]] = None,
retry: Union[Retry, _MethodDefault] = DEFAULT,
Expand Down

0 comments on commit d5c4378

Please sign in to comment.