(self)
| 19 | class ScriptTask(Mall, Guild, ThousandThings, Shrine): |
| 20 | |
| 21 | def run(self): |
| 22 | con: RichMan = self.config.rich_man |
| 23 | self.execute_tt(con.thousand_things) |
| 24 | self.execute_shrine(con.shrine) |
| 25 | self.execute_guild(con.guild_store) |
| 26 | self.execute_mall() |
| 27 | |
| 28 | self.set_next_run(task='RichMan', success=True, finish=False) |
| 29 | |
| 30 | raise TaskEnd('RichMan') |
| 31 | |
| 32 | |
| 33 |
no test coverage detected