We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06e9918 commit ba7e7e8Copy full SHA for ba7e7e8
1 file changed
nextstrain/cli/authn/session.py
@@ -2,18 +2,8 @@
2
Authentication sessions.
3
"""
4
import boto3
5
-import warnings
6
-
7
-# Ignore noisy warning from cryptography 47.0.0 about deprecated support for Python 3.8
8
-with warnings.catch_warnings():
9
- warnings.filterwarnings(
10
- "ignore",
11
- message = "Python 3\\.8 is no longer supported by the Python core team and support for it is deprecated",
12
- category = UserWarning
13
- )
14
- import jwt
15
- import jwt.exceptions
16
+import jwt
+import jwt.exceptions
17
import secrets
18
19
from base64 import b64encode
0 commit comments