Remove unneeded imports

This commit is contained in:
Mika Fischer
2011-06-09 18:06:34 +02:00
parent 1e1d0aebe1
commit 7beba6ebf0
2 changed files with 4 additions and 8 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ from sloth.annotations.model import *
from sloth.annotations.container import AnnotationContainerFactory, AnnotationContainer
from sloth.conf import config
from sloth.core.utils import import_callable
from sloth import APP_NAME, ORGANIZATION_NAME, ORGANIZATION_DOMAIN, VERSION
from sloth import VERSION
import okapy.videoio as okv
+3 -7
View File
@@ -1,22 +1,18 @@
#!/usr/bin/python
import sys, os
import os
import functools, importlib
import fnmatch
from optparse import OptionParser
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import PyQt4.uic as uic
from sloth.gui import qrc_icons
from sloth.gui.buttonarea import *
from sloth.annotations.model import *
from sloth.annotations.container import AnnotationContainerFactory, AnnotationContainer
from sloth.gui.annotationscene import *
from sloth.gui.frameviewer import *
from sloth.gui.controlbuttons import *
from sloth.conf import config
from sloth.core.utils import import_callable
from sloth import APP_NAME, ORGANIZATION_NAME, ORGANIZATION_DOMAIN, VERSION
from sloth.annotations.model import AnnotationTreeView
from sloth import APP_NAME, ORGANIZATION_DOMAIN, VERSION
import okapy.videoio as okv
GUIDIR=os.path.join(os.path.dirname(__file__))