E-Paper-Calendar/Calendar/DataSourceInterface.py

9 lines
288 B
Python
Raw Normal View History

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