Generate Python files for the schema.
(self)
| 241 | return lines |
| 242 | |
| 243 | def generate(self) -> List[GeneratedFile]: |
| 244 | """Generate Python files for the schema.""" |
| 245 | files = [] |
| 246 | |
| 247 | # Generate a single module with all types |
| 248 | files.append(self.generate_module()) |
| 249 | |
| 250 | return files |
| 251 | |
| 252 | def get_module_name(self) -> str: |
| 253 | """Get the Python module name.""" |
nothing calls this directly
no test coverage detected