more obvious handling of tag and push

This commit is contained in:
Manuel Barkhau 2018-12-22 00:37:27 +01:00
parent d46d8f075a
commit fe4b381b5b
3 changed files with 9 additions and 6 deletions

View file

@ -79,8 +79,8 @@ class Config(typ.NamedTuple):
current_version: str
pep440_version : str
tag : bool
commit: bool
tag : bool
push : bool
file_patterns: PatternsByFilePath
@ -91,8 +91,8 @@ def _debug_str(cfg: Config) -> str:
f"Config Parsed: Config(",
f"current_version='{cfg.current_version}'",
f"pep440_version='{cfg.pep440_version}'",
f"tag={cfg.tag}",
f"commit={cfg.commit}",
f"tag={cfg.tag}",
f"push={cfg.push}",
"file_patterns={",
]