File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ async def _check(ctx: "TeXBotApplicationContext") -> bool:
68
68
@classmethod
69
69
def is_interaction_user_in_main_guild_failure (cls , check : "CheckFailure" ) -> bool :
70
70
"""Whether the check failed due to the user not being in your Discord guild."""
71
- return bool (check .__name__ == cls ._check_interaction_user_in_main_guild .__name__ ) # type: ignore[attr-defined]
71
+ return bool (check .__name__ == cls .check_interaction_user_in_main_guild .__name__ ) # type: ignore[attr-defined]
72
72
73
73
@classmethod
74
74
def is_interaction_user_has_committee_role_failure (cls , check : "CheckFailure" ) -> bool :
75
75
"""Whether the check failed due to the user not having the committee role."""
76
- return bool (check .__name__ == cls ._check_interaction_user_has_committee_role .__name__ ) # type: ignore[attr-defined]
76
+ return bool (check .__name__ == cls .check_interaction_user_has_committee_role .__name__ ) # type: ignore[attr-defined]
You can’t perform that action at this time.
0 commit comments