We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c69d9d5 commit 5c7aadfCopy full SHA for 5c7aadf
tests/util_test.py
@@ -24,8 +24,11 @@ def setUp(self) -> None:
24
25
def test_getattr_proxy(self) -> None:
26
with warnings.catch_warnings():
27
- warnings.filterwarnings('ignore', category=DeprecationWarning,
28
- message='.*Use timezone-aware objects to represent datetimes')
+ warnings.filterwarnings(
+ "ignore",
29
+ category=DeprecationWarning,
30
+ message=".*Use timezone-aware objects to represent datetimes",
31
+ )
32
assert self.cert1.has_expired() is True
33
34
def test_eq(self) -> None:
0 commit comments