aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/exceptions.py')
-rw-r--r--netlib/exceptions.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/netlib/exceptions.py b/netlib/exceptions.py
index dec79c22..d0b15d27 100644
--- a/netlib/exceptions.py
+++ b/netlib/exceptions.py
@@ -5,7 +5,6 @@ Every Exception netlib raises shall be a subclass of NetlibException.
See also: http://lucumr.pocoo.org/2014/10/16/on-error-handling/
"""
-from __future__ import absolute_import, print_function, division
class NetlibException(Exception):
@@ -13,10 +12,10 @@ class NetlibException(Exception):
Base class for all exceptions thrown by netlib.
"""
def __init__(self, message=None):
- super(NetlibException, self).__init__(message)
+ super().__init__(message)
-class Disconnect(object):
+class Disconnect:
"""Immediate EOF"""