cmds.projects.CmdCheck: Move to .check.CmdDep
Move CmdCheck to .check.CmdDep, to make room for more checks under the same "check" parent command. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
5a1ef45cc0
commit
f275aa9715
5 changed files with 65 additions and 14 deletions
14
src/python/jw/pkg/cmds/projects/check/Cmd.py
Normal file
14
src/python/jw/pkg/cmds/projects/check/Cmd.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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)
|
||||
Loading…
Reference in a new issue