aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth/authorisation/roles
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-08-08 06:48:14 +0300
committerFrederick Muriuki Muriithi2023-08-08 07:46:06 +0300
commite7937ade8d91f7741a649de24faacbe194a3c0d0 (patch)
treef2c868d56aebf409185beb53e06796915283157b /gn_auth/auth/authorisation/roles
parent7d09eb50db74ed270dec5be83bdf94bdd1b5907d (diff)
downloadgn-auth-e7937ade8d91f7741a649de24faacbe194a3c0d0.tar.gz
Use relative imports to break circular import errors
Diffstat (limited to 'gn_auth/auth/authorisation/roles')
-rw-r--r--gn_auth/auth/authorisation/roles/models.py9
-rw-r--r--gn_auth/auth/authorisation/roles/views.py4
2 files changed, 6 insertions, 7 deletions
diff --git a/gn_auth/auth/authorisation/roles/models.py b/gn_auth/auth/authorisation/roles/models.py
index 0fecfc1..e1b0d6b 100644
--- a/gn_auth/auth/authorisation/roles/models.py
+++ b/gn_auth/auth/authorisation/roles/models.py
@@ -5,14 +5,13 @@ from typing import Any, Sequence, Iterable, NamedTuple
from pymonad.either import Left, Right, Either
-from gn_auth.auth.db import sqlite3 as db
-from gn_auth.auth.dictify import dictify
-from gn_auth.auth.authentication.users import User
-from gn_auth.auth.authorisation.errors import AuthorisationError
+from ...db import sqlite3 as db
+from ...dictify import dictify
+from ...authentication.users import User
from ..checks import authorised_p
from ..privileges import Privilege
-from ..errors import NotFoundError
+from ..errors import NotFoundError, AuthorisationError
class Role(NamedTuple):
"""Class representing a role: creates immutable objects."""
diff --git a/gn_auth/auth/authorisation/roles/views.py b/gn_auth/auth/authorisation/roles/views.py
index 4fc51f7..29d0991 100644
--- a/gn_auth/auth/authorisation/roles/views.py
+++ b/gn_auth/auth/authorisation/roles/views.py
@@ -3,8 +3,8 @@ import uuid
from flask import jsonify, Response, Blueprint, current_app
-from gn_auth.auth.db import sqlite3 as db
-from gn_auth.auth.dictify import dictify
+from ...dictify import dictify
+from ...db import sqlite3 as db
from .models import user_role