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 3939649 commit d764938Copy full SHA for d764938
py/generate.py
@@ -233,7 +233,7 @@ def py_annotation(self):
233
py_ref = ref_to_python(self.items.ref)
234
ann = f"typing.List[{py_ref}]"
235
else:
236
- ann = "typing.List[{}]".format(CdpPrimitiveType.get_annotation(self.items.type))
+ ann = f"typing.List[{CdpPrimitiveType.get_annotation(self.items.type)}]"
237
238
if self.ref:
239
py_ref = ref_to_python(self.ref)
0 commit comments