Skip to content

Commit 59a6a01

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent bfc509c commit 59a6a01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

typeshed_client/finder.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ def get_search_context(
7373
if search_path is None:
7474
if python_executable is None:
7575
python_executable = sys.executable
76-
raw_path = subprocess.check_output([
77-
python_executable, "-c", "import sys, json; print(json.dumps(sys.path))"
78-
])
76+
raw_path = subprocess.check_output(
77+
[python_executable, "-c", "import sys, json; print(json.dumps(sys.path))"]
78+
)
7979
search_path = [Path(path) for path in json.loads(raw_path) if path]
8080
else:
8181
if python_executable is not None:

0 commit comments

Comments
 (0)