print html url instead of the name of repo + user

This commit is contained in:
kenna-bmcdevitt 2024-08-26 13:49:04 -05:00
parent 76c012f32d
commit 2aa13bab46

View file

@ -46,7 +46,7 @@ def main():
if args.search_type == "users": if args.search_type == "users":
print(item.login) print(item.login)
else: else:
print(item.full_name) print(item.html_url)
if __name__ == "__main__": if __name__ == "__main__":
main() main()