We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab8340c commit c3b2bc7Copy full SHA for c3b2bc7
scripts/check_registry.py
@@ -190,7 +190,11 @@ def main(uv: str):
190
sys.exit(1)
191
listed_interpreters = subprocess.check_output(["py", "--list-paths"], text=True)
192
py_listed = set(listed_interpreters.splitlines())
193
- if py_311_line in py_listed or py_312_line in py_listed or py_313_line in py_listed:
+ if (
194
+ py_311_line in py_listed
195
+ or py_312_line in py_listed
196
+ or py_313_line in py_listed
197
+ ):
198
print(f"Python launcher interpreter not cleared: {py_listed}")
199
200
0 commit comments