mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-12-15 03:42:18 +00:00
Update to pyright 1.1.242
This commit is contained in:
@@ -711,12 +711,8 @@ class Command(Generic[GroupT, P, T]):
|
||||
return False
|
||||
|
||||
if self.binding is not None:
|
||||
try:
|
||||
# Type checker does not like runtime attribute retrieval
|
||||
check: Check = self.binding.interaction_check # type: ignore
|
||||
except AttributeError:
|
||||
pass
|
||||
else:
|
||||
check: Optional[Check] = getattr(self.binding, 'interaction_check', None)
|
||||
if check:
|
||||
ret = await maybe_coroutine(check, interaction)
|
||||
if not ret:
|
||||
return False
|
||||
|
||||
Reference in New Issue
Block a user