mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
fixed variable naming
This commit is contained in:
parent
cef42b84b7
commit
e1cc291605
1 changed files with 5 additions and 5 deletions
|
|
@ -78,15 +78,15 @@ class TimersManager(metaclass=Singleton):
|
|||
'task_name': 'Lookdev BG'
|
||||
}
|
||||
'''
|
||||
self.last_task = data
|
||||
|
||||
if len(input_data['hierarchy']) < 1:
|
||||
if len(data['hierarchy']) < 1:
|
||||
self.log.error((
|
||||
'Timer has been launched on task which is child of Project.'
|
||||
' That is not allowed in Pype!'
|
||||
'Not allowed action in Pype!!'
|
||||
' Timer has been launched on task which is child of Project.'
|
||||
))
|
||||
return
|
||||
|
||||
self.last_task = data
|
||||
|
||||
for module in self.modules:
|
||||
module.start_timer_manager(data)
|
||||
self.is_running = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue