mirror of
https://github.com/containers/podman-compose.git
synced 2025-08-18 09:29:55 +02:00
Remove unnecessary 'or "text"'
Fixes #1237 Signed-off-by: Yusuke Matsubara <whym@whym.org>
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user