From 0945d5923d58048c17325975f70f0738c87570b4 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Mon, 1 Sep 2025 16:03:56 -0700 Subject: [PATCH] more lint --- .flake8 | 2 +- .pylintrc | 2 +- dns/dnssec.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index 39a47307..f0c179a6 100644 --- a/.flake8 +++ b/.flake8 @@ -1,3 +1,3 @@ [flake8] extend-ignore = W503, E203, E266, E741, F401 -max-line-length = 88 +max-line-length = 110 diff --git a/.pylintrc b/.pylintrc index 1dc5208e..600d07f3 100644 --- a/.pylintrc +++ b/.pylintrc @@ -54,4 +54,4 @@ reports=no msg-template='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg})' [FORMAT] -max-line-length=88 +max-line-length=110 diff --git a/dns/dnssec.py b/dns/dnssec.py index 86a7e854..0b2aa709 100644 --- a/dns/dnssec.py +++ b/dns/dnssec.py @@ -17,6 +17,7 @@ """Common DNSSEC-related functions and constants.""" +# pylint: disable=unused-import import base64 import contextlib -- 2.47.3