chore: remove unused argument

Signed-off-by: Charlie Doern <cdoern@redhat.com>
This commit is contained in:
Charlie Doern 2025-02-06 09:51:40 -05:00
parent 3922999118
commit e508a87361
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ def available_templates_specs() -> Dict[str, BuildConfig]:
return template_specs return template_specs
def run_stack_build_command(parser: argparse.ArgumentParser, args: argparse.Namespace) -> None: def run_stack_build_command(args: argparse.Namespace) -> None:
if args.list_templates: if args.list_templates:
return _run_template_list_cmd() return _run_template_list_cmd()

View file

@ -75,4 +75,4 @@ environment is active, you must specify a name.
# can be fast to load and reduces dependencies # can be fast to load and reduces dependencies
from ._build import run_stack_build_command from ._build import run_stack_build_command
return run_stack_build_command(self.parser, args) return run_stack_build_command(args)