Remove deprecated argument from Updater docstring (#444)

Argument (job_queue_tick_interval) was removed with commit 3aedd78 but the docstring in updater.py wasn't.
This commit is contained in:
Kristofer Kirss 2016-10-23 00:31:44 +03:00 committed by Noam Meltzer
parent fae1896232
commit 45936c9982

View file

@ -61,8 +61,6 @@ class Updater(object):
bot (Optional[Bot]): A pre-initialized bot instance. If a pre-initizlied bot is used, it is
the user's responsibility to create it using a `Request` instance with a large enough
connection pool.
job_queue_tick_interval(Optional[float]): The interval the queue should
be checked for new tasks. Defaults to 1.0
Raises:
ValueError: If both `token` and `bot` are passed or none of them.