linter fixes

This commit is contained in:
Manuel Barkhau 2018-09-05 09:59:03 +02:00
parent e9642ac3d9
commit 0f6c3d3415
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ def current_calver() -> str:
return dt.date.today().strftime("v%Y%m")
def bump(old_version: str, *, release: str=None) -> str:
def bump(old_version: str, *, release: str = None) -> str:
# old_version is assumed to be a valid calver string,
# validated in pycalver.config.parse.
old_ver = parse.parse_version_info(old_version)