Remove unnecessary 'or "text"'

Fixes #1237

Signed-off-by: Yusuke Matsubara <whym@whym.org>
This commit is contained in:
Yusuke Matsubara
2025-06-24 21:30:00 +09:00
parent 61392e9cba
commit 8f9f6d0657
2 changed files with 2 additions and 1 deletions

View File

@@ -3061,7 +3061,7 @@ async def run_container(
# start the container
log.debug("Starting task for container %s", name)
return await compose.podman.run(*command, log_formatter=log_formatter or "text") # type: ignore[misc]
return await compose.podman.run(*command, log_formatter=log_formatter) # type: ignore[misc]
def deps_from_container(args: argparse.Namespace, cnt: dict) -> set: