mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-05-16 18:59:09 +00:00
Update pyright to 1.1.289
This commit is contained in:
parent
bf860b0b07
commit
3ff88db768
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@ -38,7 +38,7 @@ jobs:
|
|||||||
- name: Run Pyright
|
- name: Run Pyright
|
||||||
uses: jakebailey/pyright-action@v1
|
uses: jakebailey/pyright-action@v1
|
||||||
with:
|
with:
|
||||||
version: '1.1.265'
|
version: '1.1.289'
|
||||||
warnings: false
|
warnings: false
|
||||||
no-comments: ${{ matrix.python-version != '3.x' }}
|
no-comments: ${{ matrix.python-version != '3.x' }}
|
||||||
|
|
||||||
|
@ -1010,7 +1010,7 @@ class Command(Generic[GroupT, P, T]):
|
|||||||
if self.binding is not None:
|
if self.binding is not None:
|
||||||
check: Optional[Check] = getattr(self.binding, 'interaction_check', None)
|
check: Optional[Check] = getattr(self.binding, 'interaction_check', None)
|
||||||
if check:
|
if check:
|
||||||
ret = await maybe_coroutine(check, interaction)
|
ret = await maybe_coroutine(check, interaction) # type: ignore # Probable pyright bug
|
||||||
if not ret:
|
if not ret:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@ -445,7 +445,7 @@ class Choice(Generic[ChoiceT]):
|
|||||||
def from_dict(cls, data: ApplicationCommandOptionChoice) -> Choice[ChoiceT]:
|
def from_dict(cls, data: ApplicationCommandOptionChoice) -> Choice[ChoiceT]:
|
||||||
self = cls.__new__(cls)
|
self = cls.__new__(cls)
|
||||||
self.name = data['name']
|
self.name = data['name']
|
||||||
self.value = data['value']
|
self.value = data['value'] # type: ignore # This seems to break every other pyright release
|
||||||
self.name_localizations = _to_locale_dict(data.get('name_localizations') or {})
|
self.name_localizations = _to_locale_dict(data.get('name_localizations') or {})
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
@ -338,14 +338,14 @@ class Cog(metaclass=CogMeta):
|
|||||||
app_command: Optional[Union[app_commands.Group, app_commands.Command[Self, ..., Any]]] = getattr(
|
app_command: Optional[Union[app_commands.Group, app_commands.Command[Self, ..., Any]]] = getattr(
|
||||||
command, 'app_command', None
|
command, 'app_command', None
|
||||||
)
|
)
|
||||||
if app_command:
|
if app_command is not None:
|
||||||
group_parent = self.__cog_app_commands_group__
|
group_parent = self.__cog_app_commands_group__
|
||||||
app_command = app_command._copy_with(parent=group_parent, binding=self)
|
app_command = app_command._copy_with(parent=group_parent, binding=self)
|
||||||
# The type checker does not see the app_command attribute even though it exists
|
# The type checker does not see the app_command attribute even though it exists
|
||||||
command.app_command = app_command # type: ignore
|
command.app_command = app_command # type: ignore
|
||||||
|
|
||||||
if self.__cog_app_commands_group__:
|
if self.__cog_app_commands_group__:
|
||||||
children.append(app_command)
|
children.append(app_command) # type: ignore # Somehow it thinks it can be None here
|
||||||
|
|
||||||
if Cog._get_overridden_method(self.cog_app_command_error) is not None:
|
if Cog._get_overridden_method(self.cog_app_command_error) is not None:
|
||||||
error_handler = self.cog_app_command_error
|
error_handler = self.cog_app_command_error
|
||||||
|
@ -451,11 +451,11 @@ class Command(_BaseCommand, Generic[CogT, P, T]):
|
|||||||
self.require_var_positional: bool = kwargs.get('require_var_positional', False)
|
self.require_var_positional: bool = kwargs.get('require_var_positional', False)
|
||||||
self.ignore_extra: bool = kwargs.get('ignore_extra', True)
|
self.ignore_extra: bool = kwargs.get('ignore_extra', True)
|
||||||
self.cooldown_after_parsing: bool = kwargs.get('cooldown_after_parsing', False)
|
self.cooldown_after_parsing: bool = kwargs.get('cooldown_after_parsing', False)
|
||||||
self._cog: CogT = None
|
self._cog: CogT = None # type: ignore # This breaks every other pyright release
|
||||||
|
|
||||||
# bandaid for the fact that sometimes parent can be the bot instance
|
# bandaid for the fact that sometimes parent can be the bot instance
|
||||||
parent: Optional[GroupMixin[Any]] = kwargs.get('parent')
|
parent: Optional[GroupMixin[Any]] = kwargs.get('parent')
|
||||||
self.parent: Optional[GroupMixin[Any]] = parent if isinstance(parent, _BaseCommand) else None
|
self.parent: Optional[GroupMixin[Any]] = parent if isinstance(parent, _BaseCommand) else None # type: ignore # Does not recognise mixin usage
|
||||||
|
|
||||||
self._before_invoke: Optional[Hook] = None
|
self._before_invoke: Optional[Hook] = None
|
||||||
try:
|
try:
|
||||||
|
@ -619,7 +619,7 @@ class Loop(Generic[LF]):
|
|||||||
if not inspect.iscoroutinefunction(coro):
|
if not inspect.iscoroutinefunction(coro):
|
||||||
raise TypeError(f'Expected coroutine function, received {coro.__class__.__name__}.')
|
raise TypeError(f'Expected coroutine function, received {coro.__class__.__name__}.')
|
||||||
|
|
||||||
self._error = coro
|
self._error = coro # type: ignore
|
||||||
return coro
|
return coro
|
||||||
|
|
||||||
def _get_next_sleep_time(self, now: datetime.datetime = MISSING) -> datetime.datetime:
|
def _get_next_sleep_time(self, now: datetime.datetime = MISSING) -> datetime.datetime:
|
||||||
|
@ -111,7 +111,7 @@ class File:
|
|||||||
else:
|
else:
|
||||||
filename = getattr(fp, 'name', 'untitled')
|
filename = getattr(fp, 'name', 'untitled')
|
||||||
|
|
||||||
self._filename, filename_spoiler = _strip_spoiler(filename) # type: ignore # the above getattr doesn't narrow the type
|
self._filename, filename_spoiler = _strip_spoiler(filename)
|
||||||
if spoiler is MISSING:
|
if spoiler is MISSING:
|
||||||
spoiler = filename_spoiler
|
spoiler = filename_spoiler
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user