From 9b9748a8169917a936210f66035901df8fac4c18 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Thu, 13 May 2021 18:57:00 +0000 Subject: [PATCH] lint fix (if it's not one, it's the other) --- src/bumpver/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bumpver/cli.py b/src/bumpver/cli.py index 678e940..f9811db 100755 --- a/src/bumpver/cli.py +++ b/src/bumpver/cli.py @@ -36,7 +36,7 @@ except ImportError: pass # no need to fail because of missing dev dependency -setattr(click, 'disable_unicode_literals_warning', True) # for click<8.0 +click.disable_unicode_literals_warning = True # type: ignore[attr-defined] logger = logging.getLogger("bumpver.cli")