Skip to content

Commit f637593

Browse files
author
Edi Muskardin
committed
remove debug print statements
1 parent 59fc699 commit f637593

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

aalpy/SULs/AutomataSUL.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ def __init__(self, automaton: Automaton):
88
self.automaton: Automaton = automaton
99

1010
def pre(self):
11-
print('pre')
1211
self.automaton.reset_to_initial()
1312

1413
def step(self, letter=None):
1514
return self.automaton.step(letter)
1615

1716
def post(self):
18-
print('post')
1917
pass
2018

2119

0 commit comments

Comments
 (0)