Skip to content

Commit 0811124

Browse files
committed
linting fixes
1 parent 145f1b1 commit 0811124

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/threshold_tuning.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def normalize_bonds(bonds: List[Tuple[int, int]]) -> Set[Tuple[int, int]]:
4646
return {normalize_bond(b) for b in bonds}
4747

4848

49-
def test_single_system(
49+
def single_system_test(
5050
basename: str,
5151
bond_threshold: float = 0.4,
5252
) -> Dict[str, Any]:
@@ -336,7 +336,7 @@ def run_threshold_validation(output_file: str | None = None):
336336

337337
for basename in basenames:
338338
try:
339-
result = test_single_system(basename, bond_threshold=threshold)
339+
result = single_system_test(basename, bond_threshold=threshold)
340340
results.append(result)
341341

342342
total_expected += len(result["expected"])

0 commit comments

Comments
 (0)