From f1ab9ab96468d4753da169968095dd08500a0f42 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 2 May 2020 16:47:04 +0200 Subject: Change session_start callback to async in most examples If we fetch the roster, we should probably wait until we get it back --- examples/user_tune.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/user_tune.py') diff --git a/examples/user_tune.py b/examples/user_tune.py index 6aa0da8e..2ce29c1d 100755 --- a/examples/user_tune.py +++ b/examples/user_tune.py @@ -35,9 +35,9 @@ class TuneBot(ClientXMPP): self.current_tune = None - def start(self, event): + async def start(self, event): self.send_presence() - self.get_roster() + await self.get_roster() self['xep_0115'].update_caps() def _update_tune(self): -- cgit v1.2.3