fix too long line

This commit is contained in:
Jakub Trllo 2022-07-15 12:02:19 +02:00
parent e74f526def
commit af06e1a851

View file

@ -123,7 +123,9 @@ class CreateDailyReviewSessionServerAction(ServerAction):
# Store cycle time which will be used to create next timer
self._last_cyle_time = cycle_time
# Create timer thread
self._cycle_timer = threading.Timer(seconds_delta, self._timer_callback)
self._cycle_timer = threading.Timer(
seconds_delta, self._timer_callback
)
self._cycle_timer.start()
self._check_review_session()