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

14 lines
394 B
Python
Raw Normal View History

from __future__ import annotations
from argparse import ArgumentParser
from ....CmdBase import CmdBase
from ..CmdCheck import CmdCheck as Parent
class Cmd(CmdBase): # export
def __init__(self, parent: Parent, name: str, help: str) -> None:
super().__init__(parent, name, help)
def add_arguments(self, parser: ArgumentParser) -> None:
super().add_arguments(parser)