Skip to content

Commit 6e34ed7

Browse files
committed
fixed lint
1 parent d7d4380 commit 6e34ed7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

google/auth/_helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@ def is_python_3():
334334
Returns:
335335
bool: True if the Python interpreter is Python 3 and False otherwise.
336336
"""
337-
return sys.version_info > (3, 0)
337+
338+
return sys.version_info > (3, 0) # pragma: NO COVER
338339

339340

340341
def _hash_sensitive_info(data: Union[dict, list]) -> Union[dict, list, str]:

tests/test_version_warnings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
import importlib
1616
import sys
17-
import warnings
1817
from unittest import mock
18+
import warnings
1919

2020
import pytest
2121

0 commit comments

Comments
 (0)