Added missing parameters in DisplayAdapter

This commit is contained in:
Maximilian Giller 2019-02-19 20:57:51 +01:00
parent c3e51da446
commit a67987b78f

View file

@ -2,11 +2,11 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
class DisplayAdapter (object): class DisplayAdapter (object):
"""Interface for CalendarDesign output channels""" """Interface for CalendarDesign output channels"""
def render (): def render (self, design):
raise NotImplementedError("Functions needs to be implemented") raise NotImplementedError("Functions needs to be implemented")
def calibrate (): def calibrate (self):
raise NotImplementedError("Functions needs to be implemented") raise NotImplementedError("Functions needs to be implemented")
def sleep (): def sleep (self):
raise NotImplementedError("Functions needs to be implemented") raise NotImplementedError("Functions needs to be implemented")