diff --git a/boswatch/decoder/decoder.py b/boswatch/decoder/decoder.py index 54de6c3..6b841a9 100644 --- a/boswatch/decoder/decoder.py +++ b/boswatch/decoder/decoder.py @@ -45,8 +45,13 @@ class DummyDecoder: an getDecoder() with false data, we must return a decoder object with an decode() method to prevent an error""" def __init__(self): + """!Do nothing""" pass @staticmethod def decode(data): + """!Dummy decode() method + + @param data: data to decode + @return ALWAYS None""" return None