Only attributes which are modules to replace name with
(self, name: str)
| 127 | return matches |
| 128 | |
| 129 | def module_attr_matches(self, name: str) -> set[str]: |
| 130 | """Only attributes which are modules to replace name with""" |
| 131 | return self.attr_matches(name, only_modules=True) |
| 132 | |
| 133 | def complete(self, cursor_offset: int, line: str) -> set[str] | None: |
| 134 | """Construct a full list of possibly completions for imports.""" |