jw-pkg/src/python/jw/pkg/cmds/projects/check/Cmd.py

20 lines
508 B
Python
Raw Normal View History

from __future__ import annotations
from typing import override, TYPE_CHECKING
from ....CmdBase import CmdBase as Base
from ..CmdCheck import CmdCheck as Parent
if TYPE_CHECKING:
from argparse import ArgumentParser
class Cmd(Base): # export
def __init__(self, parent: Parent, name: str, help: str) -> None:
super().__init__(parent, name, help)
@override
def add_arguments(self, parser: ArgumentParser) -> None:
super().add_arguments(parser)
__all__ = ['Parent', 'Cmd']