From 28dac62fb325e0f09404945645589a89af19bfdd Mon Sep 17 00:00:00 2001 From: shtlrs Date: Sat, 3 Dec 2022 23:39:57 +0100 Subject: call super without referencing the current class --- bot/exts/info/subscribe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/exts/info/subscribe.py b/bot/exts/info/subscribe.py index 15e7ba347..92d7d23b2 100644 --- a/bot/exts/info/subscribe.py +++ b/bot/exts/info/subscribe.py @@ -161,7 +161,7 @@ class AllSelfAssignableRolesView(discord.ui.View): """A persistent view that'll hold one button allowing interactors to toggle all available self-assignable roles.""" def __init__(self): - super(AllSelfAssignableRolesView, self).__init__(timeout=None) + super().__init__(timeout=None) class ShowAllSelfAssignableRolesButton(discord.ui.Button): -- cgit v1.2.3