E-Paper-Calendar/Calendar/DebugInterface.py

10 lines
413 B
Python
Raw 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 (self, content):
raise NotImplementedError("Functions needs to be implemented")