Skip to content

Commit 79c6244

Browse files
author
Brett Chaldecott
committed
fix: update permissions, claims, and feature flags implementations to resolve test failures
1 parent 2f33d59 commit 79c6244

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kinde_sdk/auth/claims.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Dict, Any, Optional
22
import logging
3-
from .oauth import OAuth
3+
from kinde_sdk.auth import OAuth
44

55
class Claims:
66
def __init__(self):

kinde_sdk/auth/feature_flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Dict, Any, Optional, TypeVar, Generic, Union
22
import logging
3-
from .oauth import OAuth
3+
from kinde_sdk.auth import OAuth
44

55
T = TypeVar('T')
66

kinde_sdk/auth/permissions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Dict, List, Optional, Any
22
import logging
3-
from .oauth import OAuth
3+
from kinde_sdk.auth import OAuth
44

55
class Permissions:
66
def __init__(self):

0 commit comments

Comments
 (0)