This commit is contained in:
deadsmond 2019-11-25 20:28:30 +01:00
parent d4c51d8eb9
commit d2f566641a

View File

@ -59,7 +59,7 @@ class automata:
# if the node exists
if self.graph[q]:
# search through all its connections to find value
for transition in self.graph[q]:
for transition in self.graph[q].items:
print(transition, i)
try:
if transition[i]: