14 lines
394 B
Python
14 lines
394 B
Python
|
|
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)
|