mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix queue import
This commit is contained in:
parent
4310277918
commit
599a227359
1 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,9 @@
|
|||
import logging
|
||||
from queue import Queue
|
||||
|
||||
try:
|
||||
from queue import Queue
|
||||
except Exception:
|
||||
from Queue import Queue
|
||||
|
||||
from .slate_base.main_frame import MainFrame
|
||||
from .slate_base.layer import Layer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue