Skip to content

Commit 719875e

Browse files
committed
Remove extra docstring line
1 parent 84c4f76 commit 719875e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Lib/_pyrepl/_module_completer.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@ def __init__(self, namespace: Mapping[str, Any] | None = None) -> None:
4343
self._curr_sys_path: list[str] = sys.path[:]
4444

4545
def get_completions(self, line: str) -> list[str] | None:
46-
"""Return the next possible import completions for 'line'.
47-
48-
If 'line' is not an import statement, return None.
49-
"""
46+
"""Return the next possible import completions for 'line'."""
5047
result = ImportParser(line).parse()
5148
if not result:
5249
return None

0 commit comments

Comments
 (0)