Skip to content

Commit f941b55

Browse files
authored
Fix didChangeConfiguration (#138)
1 parent 7186da3 commit f941b55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyls/python_ls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def m_text_document__signature_help(self, textDocument=None, position=None, **_k
149149
return self.signature_help(textDocument['uri'], position)
150150

151151
def m_workspace__did_change_configuration(self, settings=None):
152-
self.config.update((settings or {}).get('pyls'))
152+
self.config.update((settings or {}).get('pyls', {}))
153153
for doc_uri in self.workspace.documents:
154154
self.lint(doc_uri)
155155

0 commit comments

Comments
 (0)