(
self, cursor_offset: int, line: str, **kwargs: Any
)
| 643 | |
| 644 | class MultilineJediCompletion(BaseCompletionType): # type: ignore [no-redef] |
| 645 | def matches( |
| 646 | self, cursor_offset: int, line: str, **kwargs: Any |
| 647 | ) -> set[str] | None: |
| 648 | return None |
| 649 | |
| 650 | def locate(self, cursor_offset: int, line: str) -> LinePart | None: |
| 651 | return None |