Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async def provide_gcs_tempfile(gcs_file, gcp_conn_id):
create_tmp_file_call = gcs_hook.provide_file(object_url=gcs_file)
tmp_gcs_file: IO[str] = await loop.run_in_executor(
None,
contextlib.ExitStack().enter_context, # type: ignore[arg-type]
contextlib.ExitStack().enter_context,
create_tmp_file_call,
)
return tmp_gcs_file
Expand Down Expand Up @@ -126,7 +126,7 @@ def serialize(self) -> tuple[str, dict[str, Any]]:
},
)

async def run(self) -> AsyncIterator[TriggerEvent]: # type: ignore[override]
async def run(self) -> AsyncIterator[TriggerEvent]:
"""Get current pipeline status and yields a TriggerEvent."""
hook = self._get_async_hook(runner=self.runner)

Expand Down Expand Up @@ -201,7 +201,7 @@ def serialize(self) -> tuple[str, dict[str, Any]]:
},
)

async def run(self) -> AsyncIterator[TriggerEvent]: # type: ignore[override]
async def run(self) -> AsyncIterator[TriggerEvent]:
"""Get current Java pipeline status and yields a TriggerEvent."""
hook = self._get_async_hook(runner=self.runner)
return_code = 0
Expand Down
Loading