diff --git a/backend/app/routers/objects.py b/backend/app/routers/objects.py index 10c6688..bc80a48 100644 --- a/backend/app/routers/objects.py +++ b/backend/app/routers/objects.py @@ -125,7 +125,7 @@ async def update_object( obj.tags = list(tags_result.scalars().all()) await db.flush() - await db.refresh(obj, ["tags"]) + await db.refresh(obj) return obj