Discordpy Get Role by ID

from discord.utils import get

role_id = 123
role = get(guild.roles, id=role_id)
Cute Cicada