jw-pkg/src/python/jw/pkg/cmds/distro/Cmd.py

16 lines
365 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from ...lib.Distro import Distro
from ..CmdDistro import CmdDistro
from ..Cmd import Cmd as Base
class Cmd(Base): # export
def __init__(self, parent: CmdDistro, name: str, help: str) -> None:
super().__init__(parent, name, help)