mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
8 lines
160 B
Python
8 lines
160 B
Python
from __future__ import absolute_import
|
|
from future.utils import PY3
|
|
|
|
if PY3:
|
|
from queue import *
|
|
else:
|
|
__future_module__ = True
|
|
from Queue import *
|