Reindented files to consistenlty use 4 spaces and removed trailing whitespaces
This commit is contained in:
parent
4e54528082
commit
60c899edcc
|
@ -148,6 +148,3 @@ if __name__ == '__main__':
|
||||||
while True:
|
while True:
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -127,8 +127,3 @@ class ConfigurationReader(object):
|
||||||
def phoneconfig(self):
|
def phoneconfig(self):
|
||||||
return self.__phoneconfig
|
return self.__phoneconfig
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -128,7 +128,6 @@ class DialingState(AbstractState):
|
||||||
return ConnectingState
|
return ConnectingState
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class TelefonapparatUserInterface(object):
|
class TelefonapparatUserInterface(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
pass
|
pass
|
||||||
|
@ -174,7 +173,6 @@ class StateMachineController(object):
|
||||||
print('%s -> %s' % (oldstate.__name__, newstate.__name__))
|
print('%s -> %s' % (oldstate.__name__, newstate.__name__))
|
||||||
self.__state = newstate(self)
|
self.__state = newstate(self)
|
||||||
|
|
||||||
|
|
||||||
def queue_event(self, evname, *evargs, **evkwargs):
|
def queue_event(self, evname, *evargs, **evkwargs):
|
||||||
if not hasattr(AbstractState, 'on_%s' % (evname)):
|
if not hasattr(AbstractState, 'on_%s' % (evname)):
|
||||||
raise ValueError('Illegal event name: %s' % (evname))
|
raise ValueError('Illegal event name: %s' % (evname))
|
||||||
|
@ -186,10 +184,6 @@ class StateMachineController(object):
|
||||||
self.__evqueue.put((None, None, None))
|
self.__evqueue.put((None, None, None))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
c = StateMachineController()
|
c = StateMachineController()
|
||||||
|
|
||||||
|
@ -210,5 +204,3 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
c.stop()
|
c.stop()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue