summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-06-03 16:15:42 -0700
committerBob Halley <halley@dnspython.org>2020-06-03 16:15:42 -0700
commit22e5f6aab0fa2b9a7e8c6b18f669807e895c23f3 (patch)
tree2c7b9d4f598199a409718d92dcf19c8c54bf1b32
parentc491c059caeb21544cf9e9e2d36643d263ae7a9b (diff)
downloaddnspython-22e5f6aab0fa2b9a7e8c6b18f669807e895c23f3.tar.gz
remove now-unused io imports
-rw-r--r--dns/rdtypes/ANY/NSEC.py1
-rw-r--r--dns/rdtypes/IN/NAPTR.py1
-rw-r--r--dns/rdtypes/IN/SRV.py1
-rw-r--r--dns/rdtypes/mxbase.py1
-rw-r--r--dns/rdtypes/nsbase.py2
5 files changed, 0 insertions, 6 deletions
diff --git a/dns/rdtypes/ANY/NSEC.py b/dns/rdtypes/ANY/NSEC.py
index 5db382b..0f79d94 100644
--- a/dns/rdtypes/ANY/NSEC.py
+++ b/dns/rdtypes/ANY/NSEC.py
@@ -15,7 +15,6 @@
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-import io
import struct
import dns.exception
diff --git a/dns/rdtypes/IN/NAPTR.py b/dns/rdtypes/IN/NAPTR.py
index c0afc94..d8f2958 100644
--- a/dns/rdtypes/IN/NAPTR.py
+++ b/dns/rdtypes/IN/NAPTR.py
@@ -15,7 +15,6 @@
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-import io
import struct
import dns.exception
diff --git a/dns/rdtypes/IN/SRV.py b/dns/rdtypes/IN/SRV.py
index 2b46305..02603f2 100644
--- a/dns/rdtypes/IN/SRV.py
+++ b/dns/rdtypes/IN/SRV.py
@@ -15,7 +15,6 @@
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-import io
import struct
import dns.exception
diff --git a/dns/rdtypes/mxbase.py b/dns/rdtypes/mxbase.py
index eb5816b..63fd869 100644
--- a/dns/rdtypes/mxbase.py
+++ b/dns/rdtypes/mxbase.py
@@ -17,7 +17,6 @@
"""MX-like base classes."""
-import io
import struct
import dns.exception
diff --git a/dns/rdtypes/nsbase.py b/dns/rdtypes/nsbase.py
index dbd0160..28daca2 100644
--- a/dns/rdtypes/nsbase.py
+++ b/dns/rdtypes/nsbase.py
@@ -17,8 +17,6 @@
"""NS-like base classes."""
-import io
-
import dns.exception
import dns.rdata
import dns.name