From 25b06bdc99f51d62627c8c678b20b3de5a7d4d06 Mon Sep 17 00:00:00 2001 From: Jodenee <81998397+Jodenee@users.noreply.github.com> Date: Fri, 16 Feb 2024 07:20:05 +0100 Subject: [PATCH] Update chat.py (#117) added missing annotation to get_user_conversations function --- roblox/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roblox/chat.py b/roblox/chat.py index a0bdb03b..f63f3bf8 100644 --- a/roblox/chat.py +++ b/roblox/chat.py @@ -78,7 +78,7 @@ async def get_settings(self) -> ChatSettings: settings_data = settings_response.json() return ChatSettings(data=settings_data) - def get_user_conversations(self): + def get_user_conversations(self) -> PageNumberIterator: """ Gets the user's conversations.