Skip to content

Commit d7c9140

Browse files
committed
final appeasement of the linting gods
1 parent 712a708 commit d7c9140

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

adafruit_azureiot/device_registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class DeviceRegistrationError(Exception):
4949
"""
5050

5151
def __init__(self, message):
52-
super(DeviceRegistrationError, self).__init__(message)
52+
super().__init__(message)
5353
self.message = message
5454

5555

adafruit_azureiot/iot_error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ def __init__(self, message: str):
3838
"""Create the IoT Error
3939
:param str message: The error message
4040
"""
41-
super(IoTError, self).__init__(message)
41+
super().__init__(message)
4242
self.message = message

adafruit_azureiot/quote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class Quoter(defaultdict):
128128
# of cached keys don't call Python code at all).
129129
def __init__(self, safe):
130130
"""safe: bytes object."""
131-
super(Quoter, self).__init__()
131+
super().__init__()
132132
self.safe = _ALWAYS_SAFE.union(safe)
133133

134134
def __missing__(self, b):

0 commit comments

Comments
 (0)