(self, tribe_id)
| 307 | |
| 308 | @error_wrapper |
| 309 | async def join_tribe(self, tribe_id): |
| 310 | resp = await self.post(f'{self.tribe_url}/api/v1/tribe/{tribe_id}/join', data={}) |
| 311 | text = await resp.text() |
| 312 | if text == 'OK': |
| 313 | return True |
| 314 | raise Exception(f"Failed join_tribe: {text}") |