From 38a81a96647eda1614fac8e251639d438e266c0a Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Sun, 19 May 2024 21:18:08 +0100 Subject: [PATCH] Bump types-docker --- pyproject.toml | 2 +- tests/mock_vws/test_docker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3dbc2712a..3d3bdfbf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -84,7 +84,7 @@ optional-dependencies.dev = [ "sybil==6.1.1", "tenacity==8.3.0", "torch==2.3.0", - "types-docker==7.0.0.20240515", + "types-docker==7.0.0.20240519", "types-pillow==10.2.0.20240511", "types-pyyaml==6.0.12.20240311", "types-requests==2.31.0.20240406", diff --git a/tests/mock_vws/test_docker.py b/tests/mock_vws/test_docker.py index 7864c9069..57ffaf511 100644 --- a/tests/mock_vws/test_docker.py +++ b/tests/mock_vws/test_docker.py @@ -131,7 +131,7 @@ def test_build_and_run( ) except BuildError as exc: full_log = "\n".join( - [item["stream"] for item in exc.build_log if "stream" in item], # type: ignore[index] + [item["stream"] for item in exc.build_log if "stream" in item], ) # If this assertion fails, it may be useful to look at the other # properties of ``exc``.