Skip to content

Commit 8cb4128

Browse files
committed
02_11_2025: tyhints cleanup
1 parent afd3a0d commit 8cb4128

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

model/library/line.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ def matrix(self,
14261426
def query(self, *,
14271427
kinds:Optional[list[str]] = None,
14281428
patterns:Optional[list[str]] = None,
1429-
checks:Optional[Callable[[Element], bool]] = None) -> list[Element]:
1429+
checks:Optional[list[Callable[[Element], bool]]] = None) -> list[Element]:
14301430
"""
14311431
Query line (all levels) for specific elements
14321432
@@ -1436,7 +1436,7 @@ def query(self, *,
14361436
list of kinds to select
14371437
patterns: Optional[list[str]]
14381438
list of patterns to select
1439-
checks: checks:Optional[Callable[[Element], bool]]
1439+
checks: checks:Optional[;ist[Callable[[Element], bool]]]
14401440
list of check functions
14411441
14421442
Returns

0 commit comments

Comments
 (0)