Skip to content

Commit bb2f2b0

Browse files
committed
update ruff and fix
1 parent 9123023 commit bb2f2b0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
stages: [commit-msg]
2020

2121
- repo: https://github.com/astral-sh/ruff-pre-commit
22-
rev: v0.15.7
22+
rev: v0.15.9
2323
hooks:
2424
- id: ruff-format
2525
types_or: [python, pyi, jupyter]

molpipeline/estimators/leader_picker_clustering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def _fit(self, X: list[ExplicitBitVect]) -> Self: # noqa: N803
120120
poolSize=len(X),
121121
threshold=self.distance_threshold,
122122
numThreads=1, # according to rdkit docu this parameter is not used
123-
# seed=self.random_state if self.random_state is not None else -1, # noqa: E501, ERA001
123+
# seed=self.random_state if self.random_state is not None else -1, # noqa: ERA001
124124
)
125125

126126
# Assign points to clusters based on centroid

0 commit comments

Comments
 (0)