E-Paper-Calendar/Calendar/DebugInterface.py

13 lines
535 B
Python
Raw Permalink Normal View History

class DebugInterface (object):
"""Defines general interface for debugging operations"""
def print_event (self, event):
raise NotImplementedError("Functions needs to be implemented")
def print_forecast (self, forecast):
raise NotImplementedError("Functions needs to be implemented")
def print_line (self, content):
2019-04-11 07:59:58 +02:00
raise NotImplementedError("Functions needs to be implemented")
def print_err (self, exception, msg=""):
raise NotImplementedError("Functions needs to be implemented")