From 82b13f3723f9c2cad770fa27e137d7adf683fb54 Mon Sep 17 00:00:00 2001 From: JP Cottin Date: Thu, 14 May 2026 23:34:26 -0700 Subject: [PATCH] Fix two typos in emu/containers/docker_container.py - launch() docstring: "abd" -> "adb"; also include the port number for parity with the existing "gRPC on port 8554" half of the sentence. - available() log message: "avaliable" -> "available". These were originally proposed by @binderjens in #350; that PR also did README updates that have since been done by #390. Co-Authored-By: Jens Binder --- emu/containers/docker_container.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emu/containers/docker_container.py b/emu/containers/docker_container.py index f51bd80..cc93961 100644 --- a/emu/containers/docker_container.py +++ b/emu/containers/docker_container.py @@ -67,7 +67,7 @@ def push(self) -> None: logging.warning("docker push %s", image) def launch(self, port_map) -> Image: - """Launches the container with the given sha, publishing abd on port, and gRPC on port 8554 + """Launches the container with the given sha, publishing adb on port 5555, and gRPC on port 8554 Returns the container. """ @@ -200,7 +200,7 @@ def docker_image(self) -> Image: def available(self): """True if this container image is locally available.""" if self.docker_image(): - logging.info("%s is avaliable", self.docker_image().tags) + logging.info("%s is available", self.docker_image().tags) return True return False