1
0
mirror of https://gitlab.com/ddorn/tfjm-discord-bot.git synced 2025-02-06 14:53:05 +00:00

5 lines
150 B
Python
Raw Normal View History

2020-04-29 16:27:40 +02:00
def has_role(member, role: str):
"""Return whether the member has a role with this name."""
return any(r.name == role for r in member.roles)