Some private method that updates the state.
(self)
| 1756 | self.order.append("other") |
| 1757 | |
| 1758 | def _private_method(self): |
| 1759 | """Some private method that updates the state.""" |
| 1760 | self.order.append("private") |
| 1761 | |
| 1762 | async def bad_chain1(self): |
| 1763 | """Test that a background task cannot be chained.""" |