# -*- coding: utf-8 -*- from __future__ import annotations from typing import TYPE_CHECKING from .Cmd import Cmd if TYPE_CHECKING: from ..CmdSecrets import CmdSecrets from argparse import Namespace, ArgumentParser class CmdCompileTemplates(Cmd): # export def __init__(self, parent: CmdSecrets) -> None: super().__init__(parent, 'compile-templates', help="Compile package template files") async def _run(self, args: Namespace) -> None: await self._compile_template_files(args.packages)