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
22
3- from atlassian_jwt_auth .signer import (
3+ from atlassian_jwt_auth .signer import ( # noqa
44 create_signer ,
55 create_signer_from_file_private_key_repository ,
66)
77
8- from atlassian_jwt_auth .key import (
8+ from atlassian_jwt_auth .key import ( # noqa
99 KeyIdentifier ,
1010 HTTPSPublicKeyRetriever ,
1111)
1212
13- from atlassian_jwt_auth .verifier import (
13+ from atlassian_jwt_auth .verifier import ( # noqa
1414 JWTAuthVerifier ,
1515)
Original file line number Diff line number Diff line change 33
44if sys .version_info >= (3 , 5 ):
55 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
1010 except ImportError as e :
1111 import warnings
1212 warnings .warn (str (e ))
Original file line number Diff line number Diff line change 11import warnings
22
3- from .decorators import requires_asap
3+ from .decorators import requires_asap # noqa
44
55
66warnings .warn (
Original file line number Diff line number Diff line change 77 raise nose .SkipTest ('Skipping tests for Python version < 3.5' )
88else :
99 try :
10- import asynctest
10+ import asynctest # noqa
1111 except ImportError :
1212 raise nose .SkipTest (
1313 'Skipping tests because asynctest is not installed' )
You can’t perform that action at this time.
0 commit comments