fix lint issue

This commit is contained in:
Manuel Barkhau 2021-05-13 18:03:41 +00:00 committed by mbarkhau
parent 3fb74f9789
commit 03f8015e71
2 changed files with 6 additions and 2 deletions

View file

@ -45,6 +45,10 @@ logger = logging.getLogger("bumpver.cli")
_VERBOSE = 0
# pylint:disable=too-many-arguments; such is the cli
# pylint:disable=too-many-locals; such is the cli
def _configure_logging(verbose: int = 0) -> None:
# pylint:disable=global-statement; global flag is global.
global _VERBOSE