Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pappasam/jedi-language-server
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed Feb 12, 2021
2 parents 7c1b2cd + 9fc4671 commit 95ec13a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jedi_language_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ def workspace_symbol(
jedi_utils.lsp_symbol_information(name)
for name in names
if name.module_path
and name.module_path.startswith(workspace_root)
and not _ignore_folder(name.module_path)
and str(name.module_path).startswith(workspace_root)
and not _ignore_folder(str(name.module_path))
)
symbols = list(itertools.islice(_symbols, 20))
return symbols if symbols else None
Expand Down

0 comments on commit 95ec13a

Please sign in to comment.