fix(standard-tests): fix semantic typo in if statement (#33890)

This commit is contained in:
Alazar Genene
2025-11-07 18:01:59 -05:00
committed by GitHub
parent e499db4266
commit 94d5271cb5

View File

@@ -98,7 +98,7 @@ def _check_python_version_from_requirement(
return True
else:
marker_str = str(requirement.marker)
if "python_version" or "python_full_version" in marker_str:
if "python_version" in marker_str or "python_full_version" in marker_str:
python_version_str = "".join(
char
for char in marker_str