mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-03-16 12:25:45 +01:00
move job_queue kwarg to end
This commit is contained in:
parent
406303d6bb
commit
783f9c375c
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ class Dispatcher(object):
|
|||
decorator
|
||||
"""
|
||||
|
||||
def __init__(self, bot, update_queue, job_queue=None, workers=4, exception_event=None):
|
||||
def __init__(self, bot, update_queue, workers=4, exception_event=None, job_queue=None):
|
||||
self.bot = bot
|
||||
self.update_queue = update_queue
|
||||
self.job_queue = job_queue
|
||||
|
|
Loading…
Add table
Reference in a new issue