mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-12 16:22:57 -07:00
Cleanup all imports
* Should fix problems with needing to do inline imports
This commit is contained in:
parent
600bca7e8b
commit
f4e719749a
40 changed files with 256 additions and 145 deletions
|
@ -14,11 +14,10 @@
|
|||
# along with PlexPy. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import os
|
||||
import sqlite3
|
||||
import sys
|
||||
import subprocess
|
||||
import threading
|
||||
import sqlite3
|
||||
import cherrypy
|
||||
import datetime
|
||||
import uuid
|
||||
# Some cut down versions of Python may not include this module and it's not critical for us
|
||||
|
@ -28,10 +27,15 @@ try:
|
|||
except ImportError:
|
||||
no_browser = True
|
||||
|
||||
import cherrypy
|
||||
from apscheduler.schedulers.background import BackgroundScheduler
|
||||
from apscheduler.triggers.interval import IntervalTrigger
|
||||
|
||||
from plexpy import versioncheck, logger, activity_pinger, plextv, pmsconnect
|
||||
import activity_pinger
|
||||
import logger
|
||||
import plextv
|
||||
import pmsconnect
|
||||
import versioncheck
|
||||
import plexpy.config
|
||||
|
||||
PROG_DIR = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue