edit decoder.py

This commit is contained in:
Bastian Schroll 2018-01-07 22:05:25 +01:00
parent f2a9f907b7
commit c2fc70f270

View file

@ -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