Skip to content

Commit 684f679

Browse files
committed
Replace uuid_utils.uuid4 with uuid.uuid4
1 parent e2c929d commit 684f679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/domain/teams/services.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

33
from typing import TYPE_CHECKING, Any
4+
from uuid import uuid4
45

56
from advanced_alchemy.exceptions import (
67
ErrorMessages,
@@ -10,7 +11,6 @@
1011
from advanced_alchemy.service import SQLAlchemyAsyncRepositoryService, is_dict, is_msgspec_model, is_pydantic_model
1112
from advanced_alchemy.utils.dataclass import Empty, EmptyType
1213
from advanced_alchemy.utils.text import slugify
13-
from uuid_utils.compat import uuid4
1414

1515
from app.db.models import Team, TeamInvitation, TeamMember, TeamRoles
1616
from app.db.models.tag import Tag

0 commit comments

Comments
 (0)