From d317dd4d0eb0af6fd3402604cd6bfa56c4a9a459 Mon Sep 17 00:00:00 2001 From: Chuck Sneed Date: Wed, 22 Mar 2023 09:32:47 -0500 Subject: [PATCH] Fix get_user_info --- RDramaAPIInterface.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/RDramaAPIInterface.py b/RDramaAPIInterface.py index e2373b3..ee6b825 100644 --- a/RDramaAPIInterface.py +++ b/RDramaAPIInterface.py @@ -139,8 +139,7 @@ class RDramaAPIInterface: def get_user_information(self, id): url=f"{self.protocol}://{self.site}/{id}/info" - self.user_information = self.get(url) - return result + return self.get(url) ''' I have no clue what this is supposed to do, lol. '''