From 5211c6ed722bb5d0f8e319fce52271b937cb11b4 Mon Sep 17 00:00:00 2001 From: nikto_b Date: Wed, 18 Feb 2026 20:34:27 +0300 Subject: [PATCH] Forget to import `uuid` --- pyproject.toml | 2 +- src/turbosloth/doc/openapi_app.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 22b614f..7315153 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "turbosloth" -version = "0.1.0.post1" +version = "0.1.0.post2" description = "ASGI REST framework for lazy devs" authors = [ { name = "nikto_b", email = "niktob560@yandex.ru" } diff --git a/src/turbosloth/doc/openapi_app.py b/src/turbosloth/doc/openapi_app.py index fa31d01..e0f358b 100644 --- a/src/turbosloth/doc/openapi_app.py +++ b/src/turbosloth/doc/openapi_app.py @@ -7,6 +7,7 @@ from mypy.checkpattern import defaultdict from turbosloth.doc.openapi_models import Info, Server, PathItem, Components, SecurityRequirement, Tag, \ ExternalDocumentation, Parameter, RequestBody, Operation, Response, OpenAPI, Schema, Reference, SchemaType from turbosloth.internal_types import MethodType +import uuid def resolve_type(tp):