Added missing parameters in DisplayAdapter
This commit is contained in:
parent
c3e51da446
commit
a67987b78f
1 changed files with 3 additions and 3 deletions
|
@ -2,11 +2,11 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
class DisplayAdapter (object):
|
||||
"""Interface for CalendarDesign output channels"""
|
||||
def render ():
|
||||
def render (self, design):
|
||||
raise NotImplementedError("Functions needs to be implemented")
|
||||
|
||||
def calibrate ():
|
||||
def calibrate (self):
|
||||
raise NotImplementedError("Functions needs to be implemented")
|
||||
|
||||
def sleep ():
|
||||
def sleep (self):
|
||||
raise NotImplementedError("Functions needs to be implemented")
|
Loading…
Reference in a new issue