File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
- from atlassian_jwt_auth .algorithms import get_permitted_algorithm_names
1
+ from atlassian_jwt_auth .algorithms import get_permitted_algorithm_names # noqa
2
2
3
- from atlassian_jwt_auth .signer import (
3
+ from atlassian_jwt_auth .signer import ( # noqa
4
4
create_signer ,
5
5
create_signer_from_file_private_key_repository ,
6
6
)
7
7
8
- from atlassian_jwt_auth .key import (
8
+ from atlassian_jwt_auth .key import ( # noqa
9
9
KeyIdentifier ,
10
10
HTTPSPublicKeyRetriever ,
11
11
)
12
12
13
- from atlassian_jwt_auth .verifier import (
13
+ from atlassian_jwt_auth .verifier import ( # noqa
14
14
JWTAuthVerifier ,
15
15
)
Original file line number Diff line number Diff line change 3
3
4
4
if sys .version_info >= (3 , 5 ):
5
5
try :
6
- import aiohttp
7
- from .auth import JWTAuth
8
- from .key import HTTPSPublicKeyRetriever
9
- from .verifier import JWTAuthVerifier
6
+ import aiohttp # noqa
7
+ from .auth import JWTAuth # noqa
8
+ from .key import HTTPSPublicKeyRetriever # noqa
9
+ from .verifier import JWTAuthVerifier # noqa
10
10
except ImportError as e :
11
11
import warnings
12
12
warnings .warn (str (e ))
Original file line number Diff line number Diff line change 1
1
import warnings
2
2
3
- from .decorators import requires_asap
3
+ from .decorators import requires_asap # noqa
4
4
5
5
6
6
warnings .warn (
Original file line number Diff line number Diff line change 7
7
raise nose .SkipTest ('Skipping tests for Python version < 3.5' )
8
8
else :
9
9
try :
10
- import asynctest
10
+ import asynctest # noqa
11
11
except ImportError :
12
12
raise nose .SkipTest (
13
13
'Skipping tests because asynctest is not installed' )
You can’t perform that action at this time.
0 commit comments