Skip to content

Commit 783f9c3

Browse files
committed
move job_queue kwarg to end
1 parent 406303d commit 783f9c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

telegram/ext/dispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class Dispatcher(object):
9696
decorator
9797
"""
9898

99-
def __init__(self, bot, update_queue, job_queue=None, workers=4, exception_event=None):
99+
def __init__(self, bot, update_queue, workers=4, exception_event=None, job_queue=None):
100100
self.bot = bot
101101
self.update_queue = update_queue
102102
self.job_queue = job_queue

0 commit comments

Comments
 (0)