Fix typo
This commit is contained in:
parent
950bbc641c
commit
5b207dec52
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
from command_parser.option import Option
|
from command_parser.option import Option
|
||||||
|
|
||||||
class Flag(Option):
|
class Flag(Option):
|
||||||
def __init__(self, name: str, default: bool = False, single_char: str | None = None) -> None:
|
def __init__(self, name: str, default: bool = False, single_char: str | None = None) -> None:
|
||||||
super(Flag, self).__init__(name, single_char)
|
super(Flag, self).__init__(name, single_char)
|
||||||
self.value = default
|
self.value = default
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue