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)