Skip to content

Commit 9da78a6

Browse files
authored
Update sudoku_solver.py
1 parent 5d82520 commit 9da78a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: data_structures/arrays/sudoku_solver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def unitsolved(unit):
172172

173173
def from_file(filename, sep="\n"):
174174
"Parse a file into a list of strings, separated by sep."
175-
return open(filename).read().strip().split(sep) # noqa: SIM115
175+
return open(filename).read().strip().split(sep)
176176

177177

178178
def random_puzzle(assignments=17):

0 commit comments

Comments
 (0)