From a2a17ac04adb79f5913240f3cbb2862be288b396 Mon Sep 17 00:00:00 2001 From: Tyrel Souza <923113+tyrelsouza@users.noreply.github.com> Date: Fri, 5 Nov 2021 00:19:09 -0400 Subject: [PATCH] print --- cli.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cli.py b/cli.py index 7c0921b..02aae29 100644 --- a/cli.py +++ b/cli.py @@ -10,9 +10,8 @@ def main(): user_name = Prompt.ask("Username?") gh = GHub() try: - success = gh.load_user(user_name=user_name) - if success: - print(gh.repos_table()) + gh.load_user(user_name=user_name) + print(gh.repos_table()) except httpx.HTTPStatusError as e: print(e)