Skip to content

Commit

Permalink
Fix didChangeConfiguration (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
gatesn authored Sep 20, 2017
1 parent 7186da3 commit f941b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyls/python_ls.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def m_text_document__signature_help(self, textDocument=None, position=None, **_k
return self.signature_help(textDocument['uri'], position)

def m_workspace__did_change_configuration(self, settings=None):
self.config.update((settings or {}).get('pyls'))
self.config.update((settings or {}).get('pyls', {}))
for doc_uri in self.workspace.documents:
self.lint(doc_uri)

Expand Down

0 comments on commit f941b55

Please sign in to comment.