summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--glucometerutils/exceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/glucometerutils/exceptions.py b/glucometerutils/exceptions.py
index b21c2ab..91b276f 100644
--- a/glucometerutils/exceptions.py
+++ b/glucometerutils/exceptions.py
@@ -18,14 +18,14 @@ class ConnectionFailed(Error):
"""It was not possible to connect to the meter."""
def __init__(self, message='Unable to connect to the meter.'):
- super(ConnectionFailed, self).__init__(message=message)
+ super(ConnectionFailed, self).__init__(message)
class CommandError(Error):
"""It was not possible to send a command to the device."""
def __init__(self, message="Unable to send command to device."):
- super(CommandError, self).__init__(message=message)
+ super(CommandError, self).__init__(message)
class InvalidResponse(Error):