(
self,
)
| 114 | |
| 115 | @property |
| 116 | def body( |
| 117 | self, |
| 118 | ) -> typing.Iterable[ |
| 119 | typing.Union[cst.BaseCompoundStatement, cst.SimpleStatementLine] |
| 120 | ]: |
| 121 | yield cst.SimpleStatementLine( |
| 122 | [cst.ImportFrom(cst.Name("typing"), names=cst.ImportStar())] |
| 123 | ) |
| 124 | yield from assign_properties(self.properties) |
| 125 | |
| 126 | yield from function_defs(self.function_overloads, self.functions, "function") |
| 127 | |
| 128 | for name, class_ in sort_items(self.classes): |
| 129 | yield class_.class_def(name) |
| 130 | |
| 131 | def __ior__(self, other: Module) -> Module: |
| 132 | """ |
nothing calls this directly
no test coverage detected