We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a982e7f + 927a598 commit d68ea59Copy full SHA for d68ea59
requirements/lint.txt
@@ -6,7 +6,7 @@
6
# Lint tools
7
# (We are not so interested in the specific versions of the tools: the versions
8
# are pinned to prevent unexpected linting failures when tools update)
9
-ruff==0.14.14
+ruff==0.15.0
10
mypy==1.19.1
11
zizmor==1.22.0
12
tests/utils.py
@@ -115,7 +115,7 @@ def wait_for_server(
115
pass
116
except OSError as e:
117
# ECONNREFUSED is expected while the server is not started
118
- if e.errno not in [errno.ECONNREFUSED]:
+ if e.errno != errno.ECONNREFUSED:
119
logger.warning(
120
"Unexpected error while waiting for server: %s", str(e)
121
)
0 commit comments