diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4d8263456..e040d385d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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' }} diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index ca2dab52e..6dbd15f9d 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -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