From 94d5271cb58a5e68097a0a1b92ecd6bd90ceffbf Mon Sep 17 00:00:00 2001 From: Alazar Genene Date: Fri, 7 Nov 2025 18:01:59 -0500 Subject: [PATCH] fix(standard-tests): fix semantic typo in if statement (#33890) --- .github/scripts/get_min_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/get_min_versions.py b/.github/scripts/get_min_versions.py index 5669172866d..dc173c2e0f8 100644 --- a/.github/scripts/get_min_versions.py +++ b/.github/scripts/get_min_versions.py @@ -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