Skip to content

Commit

Permalink
Merge pull request #102 from breezy-team/ruff-0.9.1
Browse files Browse the repository at this point in the history
Bump ruff to 0.9.1
  • Loading branch information
jelmer authored Jan 13, 2025
2 parents aa5044d + 1a38373 commit c66684b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion patiencediff/_patiencediff_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class PatienceSequenceMatcher_py(difflib.SequenceMatcher):
def __init__(self, isjunk=None, a="", b="") -> None:
if isjunk is not None:
raise NotImplementedError(
"Currently we do not support" " isjunk for sequence matching"
"Currently we do not support isjunk for sequence matching"
)
difflib.SequenceMatcher.__init__(self, isjunk, a, b)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ convention = "google"

[project.optional-dependencies]
dev = [
"ruff==0.8.6"
"ruff==0.9.1"
]

0 comments on commit c66684b

Please sign in to comment.