Skip to content

Commit 85ad2e8

Browse files
fix-Used-list-instead-of-string-in-rot13.py-and-removed-n
1 parent 5533df6 commit 85ad2e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/arrays/sudoku_solver.py

Lines changed: 1 addition & 1 deletion
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)