Skip to content

Commit

Permalink
🎨 Format Python code with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
Salamandar committed Oct 31, 2024
1 parent 52e5850 commit 7b6025d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async def github(request):
def user_noping(user: str) -> str:
# Add an invisible character to prevent pinging the user
# if their Matrix and github nickname are the same
return user[0] + '​' + user[1:]
return user[0] + "​" + user[1:]

try:
repository = request.json.get("repository", {}).get("name")
Expand Down

0 comments on commit 7b6025d

Please sign in to comment.