We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c96441 commit 80afb86Copy full SHA for 80afb86
pylsp/workspace.py
@@ -78,7 +78,7 @@ def _rope_project_builder(self, rope_config):
78
# TODO: we could keep track of dirty files and validate only those
79
if self.__rope is None or self.__rope_config != rope_config:
80
rope_folder = rope_config.get("ropeFolder")
81
- if "ropeFolder" in rope_config:
+ if rope_folder is not None:
82
self.__rope = Project(self._root_path, ropefolder=rope_folder)
83
else:
84
self.__rope = Project(self._root_path)
0 commit comments