Skip to content

Commit

Permalink
cockpit-ci: Update container to 2024-06-03
Browse files Browse the repository at this point in the history
This also reverts the workaround introduced as part of 5d06c7d, now
fixed in the version of the typeshed that mypy is using.  See #20372.

Closes #20540
  • Loading branch information
allisonkarlitskaya committed Jun 4, 2024
1 parent abac304 commit 01833da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cockpit-ci/container
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ghcr.io/cockpit-project/tasks:2024-04-25
ghcr.io/cockpit-project/tasks:2024-06-03
3 changes: 1 addition & 2 deletions src/cockpit/transports.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,7 @@ def preexec_fn() -> None:

super().__init__(loop, protocol, in_fd, out_fd)

# https://github.com/python/typeshed/pull/11548
self._get_watcher(loop).add_child_handler(self._process.pid, self._exited) # type: ignore[arg-type]
self._get_watcher(loop).add_child_handler(self._process.pid, self._exited)

def set_window_size(self, size: WindowSize) -> None:
assert self._pty_fd is not None
Expand Down

0 comments on commit 01833da

Please sign in to comment.