Skip to content

Commit 89541dd

Browse files
committed
fix ruff
Signed-off-by: Lance Drane <dranelt@ornl.gov>
1 parent cfe192b commit 89541dd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
- id: end-of-file-fixer
99
- id: trailing-whitespace
1010
- repo: https://github.com/astral-sh/ruff-pre-commit
11-
rev: v0.4.2
11+
rev: v0.5.7
1212
hooks:
1313
- id: ruff
1414
args: [ --fix ]

tests/e2e/test_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def run_example_test(example: str, timeout: int = 60) -> str:
3939
# make sure all service processes have been initialized before starting client process
4040
time.sleep(1.0)
4141
try:
42-
client_output = subprocess.run(
43-
[sys.executable, '-m', client_module], # noqa: S603 (make sure repository is arranged such that this command is safe to run)
42+
client_output = subprocess.run( # noqa: S603 (make sure repository is arranged such that this command is safe to run)
43+
[sys.executable, '-m', client_module],
4444
check=True,
4545
capture_output=True,
4646
text=True,

0 commit comments

Comments
 (0)