Skip to content

Commit

Permalink
Align terminology.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Oct 6, 2024
1 parent 2431a86 commit 2076a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pex/cache/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,9 @@ def _venv_deps(venv_dirs):
SELECT name, install_hash, wheel_hash FROM wheels
JOIN venv_deps ON venv_deps.wheel_install_hash = wheels.install_hash
JOIN venvs ON venvs.short_hash = venv_deps.venv_hash
WHERE venvs.short_hash IN ({chunk})
WHERE venvs.short_hash IN ({keys})
""".format(
chunk=placeholders
keys=placeholders
),
keys,
)
Expand Down

0 comments on commit 2076a45

Please sign in to comment.