From c5c05687031738edc76dc5c1891ac85fcb86ef25 Mon Sep 17 00:00:00 2001 From: Fran Date: Sun, 3 Nov 2024 00:20:28 -0500 Subject: [PATCH] fix: User pagination debug --- sources/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sources/main.py b/sources/main.py index 55ba059..3eb16ec 100644 --- a/sources/main.py +++ b/sources/main.py @@ -181,7 +181,8 @@ async def get_stats() -> str: if EM.SHOW_FOLLOWERS: DBM.i("Adding profile followers...") data = GHM.USER.get_followers() - DBM.i(str(data)) + for user in data: + DBM.i(str(user)) if EM.SHOW_LINES_OF_CODE: DBM.i("Adding lines of code info...")