Remove extraneous imports

This commit is contained in:
Ken Roberts 2014-10-09 07:41:32 -07:00
parent b9199f8856
commit 842898aaf9
4 changed files with 9 additions and 14 deletions

View File

@ -37,14 +37,13 @@ log.debug('projector.lib.db module loaded')
from os import path from os import path
from sqlalchemy import Column, ForeignKey, Integer, MetaData, Sequence, String, and_ from sqlalchemy import Column, ForeignKey, Integer, MetaData, String, and_
from sqlalchemy.ext.declarative import declarative_base, declared_attr from sqlalchemy.ext.declarative import declarative_base, declared_attr
from sqlalchemy.orm import backref, joinedload, relationship from sqlalchemy.orm import backref, relationship
from sqlalchemy.orm.exc import NoResultFound, MultipleResultsFound from sqlalchemy.orm.exc import NoResultFound, MultipleResultsFound
from sqlalchemy.sql import select
from openlp.core.common import translate from openlp.core.common import translate
from openlp.core.lib.db import BaseModel, Manager, init_db, init_url from openlp.core.lib.db import Manager, init_db, init_url
from openlp.core.lib.projector.constants import PJLINK_DEFAULT_SOURCES from openlp.core.lib.projector.constants import PJLINK_DEFAULT_SOURCES
metadata = MetaData() metadata = MetaData()

View File

@ -38,17 +38,14 @@ log.debug('projectormanager loaded')
from PyQt4 import QtCore, QtGui from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import QObject, QThread, pyqtSlot from PyQt4.QtCore import QObject, QThread, pyqtSlot
from openlp.core.common import Registry, RegistryProperties, Settings, OpenLPMixin, \ from openlp.core.common import RegistryProperties, Settings, OpenLPMixin, \
RegistryMixin, translate RegistryMixin, translate
from openlp.core.lib import OpenLPToolbar, ImageSource, get_text_file_string, build_icon,\ from openlp.core.lib import OpenLPToolbar
check_item_selected, create_thumb from openlp.core.lib.ui import create_widget_action
from openlp.core.lib.ui import critical_error_message_box, create_widget_action from openlp.core.lib.projector.constants import *
from openlp.core.utils import get_locale_key, get_filesystem_encoding
from openlp.core.lib.projector.db import ProjectorDB from openlp.core.lib.projector.db import ProjectorDB
from openlp.core.lib.projector.pjlink1 import PJLink1 from openlp.core.lib.projector.pjlink1 import PJLink1
from openlp.core.ui.projector.wizard import ProjectorWizard from openlp.core.ui.projector.wizard import ProjectorWizard
from openlp.core.lib.projector.constants import *
# Dict for matching projector status to display icon # Dict for matching projector status to display icon
STATUS_ICONS = {S_NOT_CONNECTED: ':/projector/projector_item_disconnect.png', STATUS_ICONS = {S_NOT_CONNECTED: ':/projector/projector_item_disconnect.png',

View File

@ -37,9 +37,8 @@ log.debug('projectortab module loaded')
from PyQt4 import QtCore, QtGui from PyQt4 import QtCore, QtGui
from openlp.core.common import Registry, Settings, UiStrings, translate from openlp.core.common import Settings, UiStrings, translate
from openlp.core.lib import SettingsTab from openlp.core.lib import SettingsTab
from openlp.core.lib.ui import find_and_set_in_combo_box
class ProjectorTab(SettingsTab): class ProjectorTab(SettingsTab):

View File

@ -40,7 +40,7 @@ from ipaddress import IPv4Address, IPv6Address, AddressValueError
from PyQt4 import QtCore, QtGui from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import pyqtSlot, pyqtSignal from PyQt4.QtCore import pyqtSlot, pyqtSignal
from openlp.core.common import Registry, RegistryProperties, translate, is_macosx from openlp.core.common import RegistryProperties, translate, is_macosx
from openlp.core.lib import build_icon from openlp.core.lib import build_icon
from openlp.core.common import verify_ip_address from openlp.core.common import verify_ip_address