Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ci:

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.11
rev: v0.13.3
hooks:
- id: ruff
args:
Expand Down Expand Up @@ -44,7 +44,7 @@ repos:
- id: check-executables-have-shebangs
- id: requirements-txt-fixer
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v9.34.0
rev: v9.37.0
hooks:
- id: eslint
files: \.[jt]sx?$ # *.js, *.jsx, *.ts and *.tsx
Expand Down
3 changes: 1 addition & 2 deletions benchmarks/benchmark_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
from enum import Enum
from itertools import product

from utils import seconds_to_ms

from benchmarks.constants import DEFAULT_NUMBER_OF_ENGINES
from utils import seconds_to_ms

RESULTS_DIR = "results"

Expand Down
3 changes: 2 additions & 1 deletion benchmarks/cluster_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
import time
from subprocess import Popen

import ipyparallel as ipp
from benchmarks.throughput import wait_for

import ipyparallel as ipp


def start_cluster(depth, number_of_engines, path='', log_output_to_file=False):
ipcontroller_cmd = (
Expand Down
Loading