Skip to content

Commit 8c8807a

Browse files
committed
Ran ruff format
1 parent 4ce1776 commit 8c8807a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pylsp/workspace.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,9 @@ def jedi_script(self, position=None, use_document_path=False):
533533
env_vars.pop("PYTHONPATH", None)
534534

535535
environment = self.get_enviroment(environment_path, env_vars=env_vars)
536-
sys_path = self.sys_path(environment_path, env_vars, prioritize_extra_paths, extra_paths)
536+
sys_path = self.sys_path(
537+
environment_path, env_vars, prioritize_extra_paths, extra_paths
538+
)
537539

538540
project_path = self._workspace.root_path
539541

@@ -570,7 +572,11 @@ def get_enviroment(self, environment_path=None, env_vars=None):
570572
return environment
571573

572574
def sys_path(
573-
self, environment_path=None, env_vars=None, prioritize_extra_paths=False, extra_paths=[]
575+
self,
576+
environment_path=None,
577+
env_vars=None,
578+
prioritize_extra_paths=False,
579+
extra_paths=[],
574580
):
575581
# Copy our extra sys path
576582
path = list(self._extra_sys_path)

0 commit comments

Comments
 (0)