cleanup bool parsing

Signed-off-by: Uosis <uosisl+github@gmail.com>
This commit is contained in:
Uosis
2025-06-12 09:58:08 -06:00
parent 8f55227167
commit 6635b8b570
4 changed files with 71 additions and 65 deletions

View File

@ -56,7 +56,9 @@ def get_minimal_container() -> dict:
def get_minimal_compose() -> PodmanCompose:
return PodmanCompose()
compose = PodmanCompose()
compose.project_name = "test_project"
return compose
def get_minimal_args() -> argparse.Namespace:
@ -67,7 +69,7 @@ def get_minimal_args() -> argparse.Namespace:
env=None,
name="default_name",
rm=None,
service=None,
service="test_service",
publish=None,
service_ports=None,
user=None,