1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

refactoring: avoid underused vars

This commit is contained in:
Shlomi Fish 2020-06-17 20:11:54 +03:00
parent 697f15c9df
commit fcc55dfe56

View file

@ -1265,9 +1265,6 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
result = ''
# iteration output
iter_ = 0
depth = 0
states = 0
for sbytes in pout:
s = six.text_type(sbytes, encoding='utf-8')
@ -1279,7 +1276,7 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
result = m.group(1)
break
self.dialog.setText(iter=iter_, depth=depth, states=states)
self.dialog.setText(iter=0, depth=0, states=0)
self.solver_state = result.lower()
hints = []