Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jan 29, 2024
1 parent bfc509c commit 59a6a01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions typeshed_client/finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def get_search_context(
if search_path is None:
if python_executable is None:
python_executable = sys.executable
raw_path = subprocess.check_output([
python_executable, "-c", "import sys, json; print(json.dumps(sys.path))"
])
raw_path = subprocess.check_output(
[python_executable, "-c", "import sys, json; print(json.dumps(sys.path))"]
)
search_path = [Path(path) for path in json.loads(raw_path) if path]
else:
if python_executable is not None:
Expand Down

0 comments on commit 59a6a01

Please sign in to comment.