Skip to content

Commit

Permalink
Fix autoimport plugin not being disabled by default (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 authored Nov 11, 2022
1 parent 2e3e4b4 commit 1b58531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylsp/plugins/rope_autoimport.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@hookimpl
def pylsp_settings() -> Dict[str, Dict[str, Dict[str, Any]]]:
# Default rope_completion to disabled
return {"plugins": {"rope_autoimport": {"enabled": True, "memory": False}}}
return {"plugins": {"rope_autoimport": {"enabled": False, "memory": False}}}


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

0 comments on commit 1b58531

Please sign in to comment.