Skip to content

Commit

Permalink
Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed Aug 26, 2024
1 parent 446347f commit 07bab3d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions jedi_language_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,11 +420,14 @@ 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 07bab3d

Please sign in to comment.