From cb908148292e004994b44fc8b37fe751340cf861 Mon Sep 17 00:00:00 2001 From: Bibo-Joshi <22366557+Bibo-Joshi@users.noreply.github.com> Date: Sun, 1 Jan 2023 13:48:24 +0100 Subject: [PATCH] Update Link-Check CI and Replace a Dead Link (#3456) --- .github/workflows/docs-linkcheck.yml | 2 +- telegram/ext/_commandhandler.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-linkcheck.yml b/.github/workflows/docs-linkcheck.yml index c69c58b3eaa..e5c54dade30 100644 --- a/.github/workflows/docs-linkcheck.yml +++ b/.github/workflows/docs-linkcheck.yml @@ -10,7 +10,7 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - python-version: [3.7] + python-version: [3.9] os: [ubuntu-latest] fail-fast: False steps: diff --git a/telegram/ext/_commandhandler.py b/telegram/ext/_commandhandler.py index 86b67badc4b..c0e539986f6 100644 --- a/telegram/ext/_commandhandler.py +++ b/telegram/ext/_commandhandler.py @@ -70,7 +70,7 @@ class CommandHandler(BaseHandler[Update, CCT]): Args: command (:obj:`str` | Collection[:obj:`str`]): The command or list of commands this handler should listen for. Case-insensitive. - Limitations are the same as described `here `_ + Limitations are the same as for :attr:`telegram.BotCommand.command`. callback (:term:`coroutine function`): The callback function for this handler. Will be called when :meth:`check_update` has determined that an update should be processed by this handler. Callback signature::