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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.14.2
rev: v0.16.5
hooks:
# Run the linter.
- id: ruff-check
Expand Down
12 changes: 6 additions & 6 deletions regtest.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
#!/usr/bin/env python3
import difflib
import glob
import lzma
import os
import re
import subprocess
import sys
import glob
import time
import tempfile
import time
from itertools import zip_longest

from joblib import Parallel, delayed
from rich import print as print_rich

import re
import difflib
import lzma

# debug = True will use the command-line diff (or xzdiff) to check the results of difflib.
debug = False

Expand Down