From 7cdc579dc6dd4c133d613f4ae7b0dd81369f374c Mon Sep 17 00:00:00 2001 From: Si Young Byun Date: Tue, 6 Jul 2021 13:57:27 -0500 Subject: [PATCH] task: Relative import --- bhjwt/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bhjwt/main.py b/bhjwt/main.py index b9079e5..2b17adc 100644 --- a/bhjwt/main.py +++ b/bhjwt/main.py @@ -1,5 +1,5 @@ -from bhjwt.exceptions import TokenIsNotJWT, FailedToDecodeJwt -from bhjwt.assertions import AssertJwt +from .exceptions import TokenIsNotJWT, FailedToDecodeJwt +from .assertions import AssertJwt import jwt