Skip to content

Commit 76255a1

Browse files
authored
Merge pull request #328 from pytest-dev/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 5aa82ce + 500792b commit 76255a1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/codespell-project/codespell
3-
rev: v2.3.0
3+
rev: v2.4.0
44
hooks:
55
- id: codespell
66
- repo: https://github.com/asottile/blacken-docs
@@ -13,7 +13,7 @@ repos:
1313
hooks:
1414
- id: check-yaml
1515
- repo: https://github.com/astral-sh/ruff-pre-commit
16-
rev: v0.9.2
16+
rev: v0.9.3
1717
hooks:
1818
- id: ruff
1919
args: [ --fix ]

src/execnet/script/socketserver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def bind_and_listen(hostport: str | tuple[str, int], execmodel: ExecModel):
8080
if hasattr(fcntl, "FD_CLOEXEC"):
8181
old = fcntl.fcntl(serversock.fileno(), fcntl.F_GETFD)
8282
fcntl.fcntl(serversock.fileno(), fcntl.F_SETFD, old | fcntl.FD_CLOEXEC)
83-
# allow the address to be re-used in a reasonable amount of time
83+
# allow the address to be reused in a reasonable amount of time
8484
if os.name == "posix" and sys.platform != "cygwin":
8585
serversock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
8686

0 commit comments

Comments
 (0)