(self)
| 1298 | return app or current_app |
| 1299 | |
| 1300 | def __repr__(self): |
| 1301 | if not self.tasks: |
| 1302 | return f'<{type(self).__name__}@{id(self):#x}: empty>' |
| 1303 | return remove_repeating_from_task( |
| 1304 | self.tasks[0]['task'], |
| 1305 | ' | '.join(repr(t) for t in self.tasks)) |
| 1306 | |
| 1307 | |
| 1308 | class chain(_chain): |
nothing calls this directly
no test coverage detected