Skip to content

Commit 07bab3d

Browse files
committed
Fix formatting issue
1 parent 446347f commit 07bab3d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

jedi_language_server/server.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,11 +420,14 @@ def references(
420420
jedi_script = jedi_utils.script(server.project, document)
421421
jedi_lines = jedi_utils.line_column(params.position)
422422
names = jedi_script.get_references(*jedi_lines)
423-
ignore_folders = server.initialization_options.workspace.symbols.ignore_folders
423+
ignore_folders = (
424+
server.initialization_options.workspace.symbols.ignore_folders
425+
)
424426
locations = [
425427
location
426428
for location in (jedi_utils.lsp_location(name) for name in names)
427-
if location is not None and not _ignore_folder(location, ignore_folders)
429+
if location is not None
430+
and not _ignore_folder(location, ignore_folders)
428431
]
429432
return locations if locations else None
430433

0 commit comments

Comments
 (0)