Merge pull request #908 from commial/fix/automaton-double-parseargs

Automaton: avoid a double call to parse_args
This commit is contained in:
Pierre Lalet 2017-10-25 09:21:22 +02:00 committed by GitHub
commit 30366e1c80
1 changed files with 0 additions and 2 deletions

View File

@ -670,8 +670,6 @@ class Automaton(six.with_metaclass(Automaton_metaclass)):
for stname in self.states:
setattr(self, stname,
_instance_state(getattr(self, stname)))
self.parse_args(*args, **kargs)
self.start()