(self)
| 268 | return spec.get("type", None) == "object" |
| 269 | |
| 270 | def read(self): |
| 271 | prefix = "{}.".format(self.name) |
| 272 | |
| 273 | result = InteractiveForm( |
| 274 | self.spec.get("properties", {}), prefix=prefix, reraise=True |
| 275 | ).initiate_dialog() |
| 276 | |
| 277 | return result |
| 278 | |
| 279 | |
| 280 | class ArrayReader(StringReader): |
nothing calls this directly
no test coverage detected