We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f6ad57 commit 0404a45Copy full SHA for 0404a45
src/server/templates/python.ts
@@ -24,7 +24,9 @@ export const apply = ({
24
return py_class_and_methods
25
})
26
const composite_types = types
27
- .filter((type) => type.attributes.length > 0 && schemas.some((schema) => type.schema == schema.name))
+ .filter(
28
+ (type) => type.attributes.length > 0 && schemas.some((schema) => type.schema == schema.name)
29
+ )
30
.map((type) => ctx.typeToClass(type))
31
const py_views = views
32
.filter((view) => schemas.some((schema) => schema.name === view.schema))
0 commit comments