E-Paper-Calendar/Calendar/DataSourceInterface.py

7 lines
288 B
Python
Raw Permalink Normal View History

class DataSourceInterface (object):
"""Interface for child interfaces that fetch data."""
def is_available (self):
2019-04-18 08:30:08 +02:00
raise NotImplementedError("Functions needs to be implemented")
def reload (self):
raise NotImplementedError("Functions needs to be implemented")