Update Pyright to 1.1.237

This commit is contained in:
Rapptz 2022-04-13 02:30:00 -04:00
parent a6ce49833c
commit 737ff5beaf
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ jobs:
- name: Run Pyright
uses: jakebailey/pyright-action@v1
with:
version: '1.1.235'
version: '1.1.237'
warnings: false
no-comments: ${{ matrix.python-version != '3.x' }}

View File

@ -221,7 +221,7 @@ def _not_overridden(f: FuncT) -> FuncT:
class _HelpCommandImpl(Command):
def __init__(self, inject: HelpCommand, *args: Any, **kwargs: Any) -> None:
super().__init__(inject.command_callback, *args, **kwargs)
super().__init__(inject.command_callback, *args, **kwargs) # type: ignore
self._original: HelpCommand = inject
self._injected: HelpCommand = inject
self.params: Dict[str, Parameter] = get_signature_parameters(inject.command_callback, globals(), skip_parameters=1)
@ -229,7 +229,7 @@ class _HelpCommandImpl(Command):
async def prepare(self, ctx: Context[Any]) -> None:
self._injected = injected = self._original.copy()
injected.context = ctx
self.callback = injected.command_callback
self.callback = injected.command_callback # type: ignore
self.params = get_signature_parameters(injected.command_callback, globals(), skip_parameters=1)
on_error = injected.on_help_command_error