Skip to content

Commit 58febcc

Browse files
committed
Reorganize imports in UserEntity for clarity
- Moved import statements for Pydantic to the top of the UserEntity file to enhance readability and maintainability.
1 parent 9535030 commit 58febcc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/corbado_python_sdk/entities/user_entity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
from typing import Optional
32

3+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
4+
45
from corbado_python_sdk.generated.models.user import User
56
from corbado_python_sdk.generated.models.user_status import UserStatus
67

0 commit comments

Comments
 (0)