diff options
Diffstat (limited to 'gn_auth/auth/authorisation/resources')
-rw-r--r-- | gn_auth/auth/authorisation/resources/base.py | 2 | ||||
-rw-r--r-- | gn_auth/auth/authorisation/resources/groups/models.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gn_auth/auth/authorisation/resources/base.py b/gn_auth/auth/authorisation/resources/base.py index 02b738f..ac93049 100644 --- a/gn_auth/auth/authorisation/resources/base.py +++ b/gn_auth/auth/authorisation/resources/base.py @@ -1,6 +1,6 @@ """Base types for resources.""" from uuid import UUID -from dataclasses import dataclass, asdict +from dataclasses import dataclass from typing import Any, Sequence diff --git a/gn_auth/auth/authorisation/resources/groups/models.py b/gn_auth/auth/authorisation/resources/groups/models.py index fc10972..e8c3492 100644 --- a/gn_auth/auth/authorisation/resources/groups/models.py +++ b/gn_auth/auth/authorisation/resources/groups/models.py @@ -2,7 +2,7 @@ import json from uuid import UUID, uuid4 from functools import reduce -from dataclasses import dataclass, asdict +from dataclasses import dataclass from typing import Any, Sequence, Iterable, Optional from flask import g |