Skip to content

Commit e99b0ee

Browse files
cursoragentmorluto
andcommitted
fix(benchmarks): sort functools import for ruff I001
Benchmark Static Quality failed because lru_cache was imported after the stdlib from-imports block. Move it into the stdlib section so isort/ruff accepts the validator cache change. Co-authored-by: morluto <morluto@users.noreply.github.com>
1 parent a4e6339 commit e99b0ee

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

benchmarks/tooling/benchmark_contracts.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44

55
import json
66
import tomllib
7+
from functools import lru_cache
78
from pathlib import Path
89
from typing import Any
910

10-
from functools import lru_cache
11-
1211
from jsonschema import Draft202012Validator
1312
from jsonschema.exceptions import SchemaError, ValidationError
1413

0 commit comments

Comments
 (0)