Skip to content

Commit

Permalink
Fixed missing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
kleest committed Sep 23, 2017
1 parent c5fdfca commit ceef110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bot/Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ def start_timer(self, callback, interval, is_single_shot=False, *args):
@param args Additional args to pass onto the callback
@return Integer A identifier for the timer used to delete it
"""
self._timer.start_timer(callback, interval, is_single_shot, *args)
return self._timer.start_timer(callback, interval, is_single_shot, *args)

def stop_timer(self, timer_id):
"""!
Expand Down

0 comments on commit ceef110

Please sign in to comment.