From c2fc70f270b47310c199c490ef99d922694c0981 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Sun, 7 Jan 2018 22:05:25 +0100 Subject: [PATCH] edit decoder.py --- boswatch/decoder/decoder.py | 5 +++++ 1 file changed, 5 insertions(+) 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