Skip to content

Commit

Permalink
Please linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Aug 20, 2021
1 parent 50a0a5b commit 7cef7fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pylsp/plugins/symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ def pylsp_document_symbols(config, document):
# pylint: disable=too-many-nested-blocks
# pylint: disable=too-many-locals
# pylint: disable=too-many-branches
# pylint: disable=too-many-statements

symbols_settings = config.plugin_settings('jedi_symbols')
all_scopes = symbols_settings.get('all_scopes', True)
add_import_symbols = symbols_settings.get('include_import_symbols', True)
definitions = document.jedi_names(all_scopes=all_scopes)
symbols = []
exclude = set({})
redefinitions = {}

while definitions != []:
d = definitions.pop(0)

Expand Down

0 comments on commit 7cef7fe

Please sign in to comment.