Skip to content

Commit 1daf25b

Browse files
committed
chore: Update ruff pre-commit hook to v0.14.10 and fix formatting
Align pre-commit ruff version with project dependency (v0.8.3 → v0.14.10) to resolve formatting disagreements between pre-commit and CI checks.
1 parent 36bf88b commit 1daf25b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.8.3
3+
rev: v0.14.10
44
hooks:
55
- id: ruff
66
args: [--fix]

tests/unit/aviato/test_sandbox.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2729,9 +2729,9 @@ async def response_generator() -> AsyncIterator[Any]:
27292729
assert close_received_time is not None, "Stdin close was never received"
27302730

27312731
# Stdin should be sent after ready (with some tolerance for timing)
2732-
assert (
2733-
stdin_received_time >= ready_sent_time
2734-
), f"Stdin received at {stdin_received_time} but ready sent at {ready_sent_time}"
2732+
assert stdin_received_time >= ready_sent_time, (
2733+
f"Stdin received at {stdin_received_time} but ready sent at {ready_sent_time}"
2734+
)
27352735

27362736
def test_exec_stdin_ready_timeout(self) -> None:
27372737
"""Test SandboxTimeoutError raised when ready signal not received."""

0 commit comments

Comments
 (0)