From caab5bf878aaac398273a759cdd856c7188a90ed Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Thu, 11 Dec 2025 12:01:12 +0000 Subject: [PATCH 1/2] fix(typegen): python type missing uuid import --- src/server/templates/python.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/templates/python.ts b/src/server/templates/python.ts index fa2d5eef..2d9459ca 100644 --- a/src/server/templates/python.ts +++ b/src/server/templates/python.ts @@ -34,6 +34,7 @@ export const apply = ({ from __future__ import annotations import datetime +import uuid from typing import ( Annotated, Any, From 8c19dcd49db1f5908b8de07092a219b9617f313b Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Thu, 11 Dec 2025 12:13:58 +0000 Subject: [PATCH 2/2] chore(tests): update python generator test --- test/server/typegen.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/server/typegen.ts b/test/server/typegen.ts index 852eddce..4e720277 100644 --- a/test/server/typegen.ts +++ b/test/server/typegen.ts @@ -6378,6 +6378,7 @@ test('typegen: python', async () => { "from __future__ import annotations import datetime +import uuid from typing import ( Annotated, Any,