(self)
| 16 | |
| 17 | class ScriptTask(GameUi, SoulsTidyAssets): |
| 18 | def run(self): |
| 19 | self.ui_get_current_page() |
| 20 | self.ui_goto(page_shikigami_records) |
| 21 | con = self.config.souls_tidy |
| 22 | if con.simple_tidy.greed_maneki: |
| 23 | self.goto_souls() |
| 24 | self.greed_maneki() |
| 25 | self.back_records() |
| 26 | |
| 27 | self.set_next_run(task='SoulsTidy', success=True, finish=False) |
| 28 | raise TaskEnd('SoulsTidy') |
| 29 | |
| 30 | def goto_souls(self): |
| 31 | """ |
no test coverage detected