We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 646b01e + 3d644a0 commit 3e28fb3Copy full SHA for 3e28fb3
main.py
@@ -409,8 +409,10 @@ def get_short_info(github):
409
else:
410
string += "> 🚫 Not opted to Hire\n > \n"
411
412
- string += '> 📜 ' + str(public_repo) + ' Public Repository \n > \n'
413
- string += '> 🔑 ' + str(private_repo) + ' Owned Private Repository \n\n'
+ string += '> 📜 ' + str(public_repo) + " Public Repositor"
+ string += 'ies \n > \n' if public_repo > 1 else 'y \n > \n'
414
+ string += '> 🔑 ' + str(private_repo) + " Owned Private Repositor"
415
+ string += 'ies \n\n' if private_repo > 1 else 'y \n > \n'
416
417
print(string)
418
return string
0 commit comments