From 1e5cdeac8d28e798a144374d331bd137c9b1fd93 Mon Sep 17 00:00:00 2001 From: Hassan Abouelela Date: Sat, 5 Feb 2022 17:35:57 +0200 Subject: Switch To List Comp Co-authored-by: Bluenix Signed-off-by: Hassan Abouelela --- backend/authentication/user.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'backend/authentication') diff --git a/backend/authentication/user.py b/backend/authentication/user.py index 0ec0188..6256cae 100644 --- a/backend/authentication/user.py +++ b/backend/authentication/user.py @@ -47,11 +47,7 @@ class User(BaseUser): return [] server_roles = await discord.get_roles(database) - roles = [] - - for role in server_roles: - if role.id in self.member.roles: - roles.append(role.name) + roles = [role.name for role in server_roles if role.id in self.member.roles] if "admin" in roles: # Protect against collision with the forms admin role -- cgit v1.2.3