attach command to args dict

This commit is contained in:
Fabian Dill
2021-02-21 23:46:05 +01:00
parent 8a395a3021
commit cbbdb2948d
4 changed files with 133 additions and 110 deletions

View File

@@ -10,7 +10,7 @@ def tuplize_version(version: str) -> typing.Tuple[int, ...]:
class Version(typing.NamedTuple):
major: int
minor: int
micro: int
build: int
__version__ = "0.0.1"
_version_tuple = tuplize_version(__version__)