mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix too long line
This commit is contained in:
parent
e74f526def
commit
af06e1a851
1 changed files with 3 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue