From 094c36f61b5980b58eade14482db024b0f484fbc Mon Sep 17 00:00:00 2001 From: Alexander Kalinovsky Date: Sun, 4 May 2025 01:00:23 +0700 Subject: [PATCH] minor change --- src/quickbot/model/bot_entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quickbot/model/bot_entity.py b/src/quickbot/model/bot_entity.py index af63325..b57c4df 100644 --- a/src/quickbot/model/bot_entity.py +++ b/src/quickbot/model/bot_entity.py @@ -245,7 +245,7 @@ class BotEntity[CreateSchemaType: BaseModel, UpdateSchemaType: BaseModel]( @classmethod @session_dep async def get(cls, *, session: AsyncSession | None = None, id: int): - return await session.get(cls, id, populate_existing=True) + return await session.get(cls, id) @classmethod def _static_filter_condition(