This commit is contained in:
deadsmond 2019-11-24 22:43:24 +01:00
parent af3915c683
commit 21358da847

View File

@ -33,7 +33,6 @@ class automata:
return 'FALSE %s' % text
def get_node_transition(self, query):
print(query)
for i in self.storage:
if i[0] == query:
return i[1]
@ -49,4 +48,3 @@ f = open(sys.argv[1], 'r')
for line in f:
print(auto.test_string(line))
print(auto)