Reindented files to consistenlty use 4 spaces and removed trailing whitespaces

This commit is contained in:
klonfish 2017-04-27 00:47:53 +02:00
parent 4e54528082
commit 60c899edcc
4 changed files with 655 additions and 671 deletions

View File

@ -148,6 +148,3 @@ if __name__ == '__main__':
while True:
time.sleep(1)

View File

@ -127,8 +127,3 @@ class ConfigurationReader(object):
def phoneconfig(self):
return self.__phoneconfig

View File

@ -128,7 +128,6 @@ class DialingState(AbstractState):
return ConnectingState
class TelefonapparatUserInterface(object):
def __init__(self):
pass
@ -174,7 +173,6 @@ class StateMachineController(object):
print('%s -> %s' % (oldstate.__name__, newstate.__name__))
self.__state = newstate(self)
def queue_event(self, evname, *evargs, **evkwargs):
if not hasattr(AbstractState, 'on_%s' % (evname)):
raise ValueError('Illegal event name: %s' % (evname))
@ -186,10 +184,6 @@ class StateMachineController(object):
self.__evqueue.put((None, None, None))
if __name__ == '__main__':
c = StateMachineController()
@ -210,5 +204,3 @@ if __name__ == '__main__':
c.stop()