Skip to content

Commit

Permalink
Revert "Fix formatting issue"
Browse files Browse the repository at this point in the history
This reverts commit 07bab3d.
  • Loading branch information
pappasam committed Aug 26, 2024
1 parent 07bab3d commit 18bbe41
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions jedi_language_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,14 +420,11 @@ def references(
jedi_script = jedi_utils.script(server.project, document)
jedi_lines = jedi_utils.line_column(params.position)
names = jedi_script.get_references(*jedi_lines)
ignore_folders = (
server.initialization_options.workspace.symbols.ignore_folders
)
ignore_folders = server.initialization_options.workspace.symbols.ignore_folders
locations = [
location
for location in (jedi_utils.lsp_location(name) for name in names)
if location is not None
and not _ignore_folder(location, ignore_folders)
if location is not None and not _ignore_folder(location, ignore_folders)
]
return locations if locations else None

Expand Down

0 comments on commit 18bbe41

Please sign in to comment.