Skip to content

Commit

Permalink
fix: wrong UserEntity import
Browse files Browse the repository at this point in the history
  • Loading branch information
zumuta committed Dec 22, 2024
1 parent 8856931 commit d1d1553
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/src/kwai/api/v1/portal/endpoints/applications.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
"""Module that implements applications endpoints."""

from fastapi import APIRouter, Depends, HTTPException, status

from kwai.api.dependencies import create_database, get_current_user
from kwai.api.schemas.application import ApplicationDocument
from kwai.core.json_api import Meta
from kwai.modules.identity.users.user import UserEntity
from kwai.modules.portal.applications.application_db_repository import (
ApplicationDbRepository,
)
Expand All @@ -16,7 +18,6 @@
UpdateApplication,
UpdateApplicationCommand,
)
from tests.core.domain.test_entity import UserEntity

router = APIRouter()

Expand Down

0 comments on commit d1d1553

Please sign in to comment.