diff --git a/Breath-First Search/Sucessors.py b/Breath-First Search/Sucessors.py
index ed090b850146bdcb7c00cc9622e99f97c2a42a11..896543e2e1b49e628ba03036d05a43e3e81c28e2 100644
--- a/Breath-First Search/Sucessors.py	
+++ b/Breath-First Search/Sucessors.py	
@@ -18,8 +18,6 @@ def sudoku_successor(state):
         new_state = list(map(list, state))  # Convert state to a list of lists
         new_state[y][x] = j
         if sudoku_allowed((y, x, new_state)):
-            # print(j)
-            # print(state)
             next_states.append(tuple(map(tuple, new_state)))
     return next_states