(self)
| 200 | return GeneratedFile(self.output_file_path(), "\n".join(lines).rstrip() + "\n") |
| 201 | |
| 202 | def output_file_path(self) -> str: |
| 203 | return str(self._schema_output_path(self.schema)) |
| 204 | |
| 205 | def module_file_name(self) -> str: |
| 206 | if self.schema.source_file and not self.schema.source_file.startswith("<"): |
no test coverage detected