Skip to content

Commit 94d5271

Browse files
authored
fix(standard-tests): fix semantic typo in if statement (#33890)
1 parent e499db4 commit 94d5271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/get_min_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def _check_python_version_from_requirement(
9898
return True
9999
else:
100100
marker_str = str(requirement.marker)
101-
if "python_version" or "python_full_version" in marker_str:
101+
if "python_version" in marker_str or "python_full_version" in marker_str:
102102
python_version_str = "".join(
103103
char
104104
for char in marker_str

0 commit comments

Comments
 (0)