(self, shared, prep_res, exec_res_list)
| 743 | return chapter_content # Return the Markdown string (potentially translated) |
| 744 | |
| 745 | def post(self, shared, prep_res, exec_res_list): |
| 746 | # exec_res_list contains the generated Markdown for each chapter, in order |
| 747 | shared["chapters"] = exec_res_list |
| 748 | # Clean up the temporary instance variable |
| 749 | del self.chapters_written_so_far |
| 750 | print(f"Finished writing {len(exec_res_list)} chapters.") |
| 751 | |
| 752 | |
| 753 | class CombineTutorial(Node): |
nothing calls this directly
no outgoing calls
no test coverage detected