mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-07 11:40:01 -08:00
de3393d62b
* Remove Python 2 update modal * Remove Python 2 handling code * Remove backports dependencies * Remove uses of future and __future__ * Fix import * Remove requirements * Update lib folder * Clean up imports and blank lines --------- Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>
8 lines
191 B
Python
8 lines
191 B
Python
from __future__ import absolute_import
|
|
from future.utils import PY3
|
|
|
|
from multiprocessing import *
|
|
if not PY3:
|
|
__future_module__ = True
|
|
from multiprocessing.queues import SimpleQueue
|