8000 Fix autoimport plugin not being disabled by default (#300) · hetmankp/python-lsp-server@1b58531 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1b58531

Browse files
authored
Fix autoimport plugin not being disabled by default (python-lsp#300)
1 parent 2e3e4b4 commit 1b58531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylsp/plugins/rope_autoimport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
@hookimpl
2626
def pylsp_settings() -> Dict[str, Dict[str, Dict[str, Any]]]:
2727
# Default rope_completion to disabled
28-
return {"plugins": {"rope_autoimport": {"enabled": True, "memory": False}}}
28+
return {"plugins": {"rope_autoimport": {"enabled": False, "memory": False}}}
2929

3030

3131
def _should_insert(expr: tree.BaseNode, word_node: tree.Leaf) -> bool:

0 commit comments

Comments
 (0)
0