add config validator subcommand

This commit is contained in:
2023-01-09 15:38:10 +02:00
parent 1f07a89316
commit 9760a055de
33 changed files with 1316 additions and 45 deletions

View File

@ -77,9 +77,13 @@ Again, the most checks can be performed by `make check` command, though some add
CLAZZ_ATTRIBUTE = 42
def __init__(self) -> None:
def __init__(self, *args: Any, **kwargs: Any) -> None:
"""
default constructor
Args:
*args(Any): positional arguments
**kwargs(Any): keyword arguments
"""
self.instance_attribute = ""
```