From 1ba1dda1daa4991c86567b7177c62e6ff114f087 Mon Sep 17 00:00:00 2001 From: Jonathan Goodson Date: Fri, 19 Sep 2025 20:41:36 -0400 Subject: [PATCH] fix: add missing parenthesis to UUID property template --- .../templates/property_templates/uuid_property.py.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openapi_python_client/templates/property_templates/uuid_property.py.jinja b/openapi_python_client/templates/property_templates/uuid_property.py.jinja index 3a6ce46bb..ec51a5ef5 100644 --- a/openapi_python_client/templates/property_templates/uuid_property.py.jinja +++ b/openapi_python_client/templates/property_templates/uuid_property.py.jinja @@ -27,5 +27,5 @@ if not isinstance({{ source }}, Unset): {% endmacro %} {% macro multipart(property, source, name) %} -files.append(({{ name }}, (None, str({{ source }}), "text/plain")) +files.append(({{ name }}, (None, str({{ source }}), "text/plain"))) {% endmacro %}