Base for new scanner

This commit is contained in:
klemek
2021-01-08 16:09:04 +01:00
parent 820f57f960
commit 4e03a9a11b
4 changed files with 62 additions and 10 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ class Scanner(ABC):
def __init__(
self,
*,
has_digit_args: bool,
valid_args: List[str],
has_digit_args: bool = False,
valid_args: List[str] = [],
help: str,
intro_context: str,
):