mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-23 06:50:29 +01:00
Update Link-Check CI and Replace a Dead Link (#3456)
This commit is contained in:
parent
7b61a30fb1
commit
cb90814829
2 changed files with 2 additions and 2 deletions
2
.github/workflows/docs-linkcheck.yml
vendored
2
.github/workflows/docs-linkcheck.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.7]
|
python-version: [3.9]
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
fail-fast: False
|
fail-fast: False
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -70,7 +70,7 @@ class CommandHandler(BaseHandler[Update, CCT]):
|
||||||
Args:
|
Args:
|
||||||
command (:obj:`str` | Collection[:obj:`str`]):
|
command (:obj:`str` | Collection[:obj:`str`]):
|
||||||
The command or list of commands this handler should listen for. Case-insensitive.
|
The command or list of commands this handler should listen for. Case-insensitive.
|
||||||
Limitations are the same as described `here <https://core.telegram.org/bots#commands>`_
|
Limitations are the same as for :attr:`telegram.BotCommand.command`.
|
||||||
callback (:term:`coroutine function`): The callback function for this handler. Will be
|
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
|
called when :meth:`check_update` has determined that an update should be processed by
|
||||||
this handler. Callback signature::
|
this handler. Callback signature::
|
||||||
|
|
Loading…
Reference in a new issue