]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Pylint: enable unused-import check
authorMartin Basti <martin.basti@gmail.com>
Sun, 26 Jun 2016 19:31:44 +0000 (21:31 +0200)
committerMartin Basti <martin.basti@gmail.com>
Sun, 26 Jun 2016 23:35:48 +0000 (01:35 +0200)
dns/hash.py
dns/message.py
dns/rdata.py
dns/renderer.py
dns/tsig.py
pylintrc

index 27f7a7e2792d8267b785b55d507b1a152f743a1b..966838a17a4006b5cbc29154b94c95152d1c289d 100644 (file)
@@ -15,7 +15,6 @@
 
 """Hashing backwards compatibility wrapper"""
 
-import sys
 import hashlib
 
 
index 9b8dcd0fa012c1779c88cdd4295198eb2a7e3431..75f51e7862109c8575769566305952f9036985d0 100644 (file)
@@ -19,7 +19,6 @@ from __future__ import absolute_import
 
 from io import StringIO
 import struct
-import sys
 import time
 
 import dns.edns
index 975819778b64c6fb79ce54187168ee7751748042..0de9e39e864f4f840dce118686771c0f7cfcbc57 100644 (file)
@@ -28,7 +28,6 @@ chunk of hexstring that _hexify() produces before whitespace occurs.
 from io import BytesIO
 import base64
 import binascii
-import struct
 
 import dns.exception
 import dns.name
index ddc277cd4966235b40b3cc51656aed81de0d34ce..670fb28faecac4b2cf5a6a77c26f2af5598f5aca 100644 (file)
@@ -19,7 +19,6 @@ from io import BytesIO
 import struct
 import random
 import time
-import sys
 
 import dns.exception
 import dns.tsig
index 38fe31ebef3d3871b0184f453f4f8b66f36b421a..b9d7bb622a357312fb2e083f852255ea87cfbdcc 100644 (file)
@@ -17,7 +17,6 @@
 
 import hmac
 import struct
-import sys
 
 import dns.exception
 import dns.hash
index 96fcc075f177067bc411c799176984a8e79a0932..54e6e750e38bb9b9c4b03a4edef414a3549a91d5 100644 (file)
--- a/pylintrc
+++ b/pylintrc
@@ -49,7 +49,6 @@ disable=
     unnecessary-lambda,
     unneeded-not,
     unused-argument,
-    unused-import,
     unused-variable,
     wrong-import-order,
     wrong-import-position,