mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
supercritical fix for supercritical bug
This commit is contained in:
parent
d6d0c8fca6
commit
4ba41c4e9d
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ def play_animation():
|
|||
|
||||
animation_length = int(len(animation) / frame_size)
|
||||
current_frame = 0
|
||||
for frame in range(animation_length):
|
||||
for _ in range(animation_length):
|
||||
if sys.platform.startswith('win'):
|
||||
os.system('cls')
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue