E-Paper-Calendar/Calendar/DataSourceInterface.py
2019-07-13 08:05:35 +02:00

8 lines
288 B
Python

class DataSourceInterface (object):
"""Interface for child interfaces that fetch data."""
def is_available(self):
raise NotImplementedError("Functions needs to be implemented")
def reload(self):
raise NotImplementedError("Functions needs to be implemented")