mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
Add telegram.voice to docs and minor docstring fixes #39
This commit is contained in:
parent
6e2881b31b
commit
d4870148c7
3 changed files with 10 additions and 1 deletions
|
@ -29,6 +29,7 @@ Submodules
|
||||||
telegram.user
|
telegram.user
|
||||||
telegram.userprofilephotos
|
telegram.userprofilephotos
|
||||||
telegram.video
|
telegram.video
|
||||||
|
telegram.voice
|
||||||
|
|
||||||
Module contents
|
Module contents
|
||||||
---------------
|
---------------
|
||||||
|
|
7
docs/source/telegram.voice.rst
Normal file
7
docs/source/telegram.voice.rst
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
telegram.voice module
|
||||||
|
=====================
|
||||||
|
|
||||||
|
.. automodule:: telegram.voice
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
|
@ -139,7 +139,8 @@ class InputFile(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def is_inputfile(data):
|
def is_inputfile(data):
|
||||||
"""Check if the request is a file request
|
"""Check if the request is a file request.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
data:
|
data:
|
||||||
A dict of (str, unicode) key/value pairs
|
A dict of (str, unicode) key/value pairs
|
||||||
|
|
Loading…
Reference in a new issue