Skip to content

Commit

Permalink
fix ruff
Browse files Browse the repository at this point in the history
Signed-off-by: Lance Drane <[email protected]>
  • Loading branch information
Lance-Drane committed Aug 8, 2024
1 parent cfe192b commit 89541dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.2
rev: v0.5.7
hooks:
- id: ruff
args: [ --fix ]
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def run_example_test(example: str, timeout: int = 60) -> str:
# make sure all service processes have been initialized before starting client process
time.sleep(1.0)
try:
client_output = subprocess.run(
[sys.executable, '-m', client_module], # noqa: S603 (make sure repository is arranged such that this command is safe to run)
client_output = subprocess.run( # noqa: S603 (make sure repository is arranged such that this command is safe to run)
[sys.executable, '-m', client_module],
check=True,
capture_output=True,
text=True,
Expand Down

0 comments on commit 89541dd

Please sign in to comment.