Skip to content

Commit

Permalink
Merge pull request #34 from hedythedev/patch-1
Browse files Browse the repository at this point in the history
Plural/Singular Wording for GitHub data section
  • Loading branch information
anmol098 committed Aug 3, 2020
2 parents 646b01e + 3d644a0 commit 3e28fb3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,8 +409,10 @@ def get_short_info(github):
else:
string += "> 🚫 Not opted to Hire\n > \n"

string += '> 📜 ' + str(public_repo) + ' Public Repository \n > \n'
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'
string += '> 🔑 ' + str(private_repo) + " Owned Private Repositor"
string += 'ies \n\n' if private_repo > 1 else 'y \n > \n'

print(string)
return string
Expand Down

0 comments on commit 3e28fb3

Please sign in to comment.