From 97d71e8a3b9abee74af2ddb13658b0066268ec7c Mon Sep 17 00:00:00 2001 From: Carl Lundin Date: Thu, 7 Sep 2023 13:19:07 -0700 Subject: [PATCH] Move comment location --- google/auth/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/auth/__init__.py b/google/auth/__init__.py index 9c208828c..2d6caec71 100644 --- a/google/auth/__init__.py +++ b/google/auth/__init__.py @@ -42,8 +42,8 @@ class Python37DeprecationWarning(DeprecationWarning): # pragma: NO COVER pass +# Checks if the current runtime is Python 3.7. if sys.version_info.major == 3 and sys.version_info.minor == 7: # pragma: NO COVER - # Checks if the current runtime is Python 3.7. message = ( "After January 1, 2024, new releases of this library will drop support " "for Python 3.7. More details about Python 3.7 support "