We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e9ca92 commit e3f3d66Copy full SHA for e3f3d66
.pre-commit-config.yaml
@@ -16,7 +16,7 @@ repos:
16
- id: auto-walrus
17
18
- repo: https://github.com/astral-sh/ruff-pre-commit
19
- rev: v0.7.2
+ rev: v0.7.3
20
hooks:
21
- id: ruff
22
- id: ruff-format
@@ -42,7 +42,7 @@ repos:
42
pass_filenames: false
43
44
- repo: https://github.com/abravalheri/validate-pyproject
45
- rev: v0.22
+ rev: v0.23
46
47
- id: validate-pyproject
48
data_structures/arrays/sudoku_solver.py
@@ -172,7 +172,7 @@ def unitsolved(unit):
172
173
def from_file(filename, sep="\n"):
174
"Parse a file into a list of strings, separated by sep."
175
- return open(filename).read().strip().split(sep) # noqa: SIM115
+ return open(filename).read().strip().split(sep)
176
177
178
def random_puzzle(assignments=17):
0 commit comments