Skip to content
Open
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 @@ -5,13 +5,13 @@ ci:

repos:
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 8.0.0
hooks:
- id: isort
args: ["--profile", "black", "--filter-files", "buildtest", "tests", "docs"]

- repo: https://github.com/psf/black-pre-commit-mirror
rev: '24.3.0'
rev: '26.1.0'
hooks:
- id: black
language_version: python3
2 changes: 1 addition & 1 deletion buildtest/tools/cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def _sysfs_topo():
cpuinfo["topology"]["cores"] = sorted(list(cores))
cpuinfo["topology"]["caches"] = []
for cache_type, cpusets in caches.items():
(cache_level, cache_size, cache_linesize, cache_associativity, num_cpus) = (
cache_level, cache_size, cache_linesize, cache_associativity, num_cpus = (
cache_type
)
c = {
Expand Down
Loading