Skip to content

Commit b0af352

Browse files
committed
Revert relative to absolute imports
1 parent c64772c commit b0af352

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

auth0/authentication/async_token_verifier.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Token Verifier module"""
2-
from auth0 import TokenValidationError
3-
2+
from .. import TokenValidationError
43
from ..rest_async import AsyncRestClient
54
from .token_verifier import AsymmetricSignatureVerifier, JwksFetcher, TokenVerifier
65

auth0/test_async/test_async_token_verifier.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
from cryptography.hazmat.primitives import serialization
88
from mock import ANY
99

10-
from auth0 import TokenValidationError
11-
10+
from .. import TokenValidationError
1211
from ..authentication.async_token_verifier import (
1312
AsyncAsymmetricSignatureVerifier,
1413
AsyncJwksFetcher,

0 commit comments

Comments
 (0)