Files
cpl/src/cpl_core/configuration/flag_argument.py

15 lines
454 B
Python

from cpl_core.configuration.argument_abc import ArgumentABC
class FlagArgument(ArgumentABC):
def __init__(self,
token: str,
name: str,
aliases: list[str],
prevent_next_executable: bool = False,
console_arguments: list['ArgumentABC'] = None
):
ArgumentABC.__init__(self, token, name, aliases, prevent_next_executable, console_arguments)