Skip to content

Commit 4167ef4

Browse files
committed
Format python_lsp.py
1 parent 1281fb0 commit 4167ef4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pylsp/python_lsp.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,9 @@ def _cell_document__completion(self, cellDocument, position=None, **_kwargs):
724724

725725
# Copy LAST_JEDI_COMPLETIONS to cell document so that completionItem/resolve will work
726726
tempDocument = workspace.get_document(temp_uri)
727-
cellDocument.shared_data["LAST_JEDI_COMPLETIONS"] = tempDocument.shared_data.get("LAST_JEDI_COMPLETIONS", None)
727+
cellDocument.shared_data["LAST_JEDI_COMPLETIONS"] = (
728+
tempDocument.shared_data.get("LAST_JEDI_COMPLETIONS", None)
729+
)
728730

729731
return completions
730732

0 commit comments

Comments
 (0)