Skip to content

Commit

Permalink
more minor lint tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
rthalley committed Oct 18, 2024
1 parent 0d3b8e8 commit 4851b48
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ disable=
useless-super-delegation, # not against this, but we have to do it for mypy happiness
use-implicit-booleaness-not-comparison-to-zero, # I often prefer non-implicit booleaness.
use-implicit-booleaness-not-comparison-to-string,
unused-argument,

[REPORTS]

Expand Down
2 changes: 0 additions & 2 deletions dns/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
import enum
from typing import Any, Optional, Type, TypeVar, Union

import dns.exception

TIntEnum = TypeVar("TIntEnum", bound="IntEnum")


Expand Down

0 comments on commit 4851b48

Please sign in to comment.