pyfax: get rid of import *

Change-Id: Ifb1d5edc400fe9f8b91851057c243280151eb1a2
This commit is contained in:
Xisco Fauli
2012-10-14 21:28:48 +02:00
parent 6c78b874a8
commit 9715b31f9d
4 changed files with 7 additions and 9 deletions

View File

@@ -31,7 +31,6 @@
# Danny Brewer Revised 2004-06-05-01
#
import unohelper
from com.sun.star.awt import XActionListener
class ActionListenerProcAdapter( unohelper.Base, XActionListener ):

View File

@@ -17,8 +17,7 @@
#
import traceback
from abc import ABCMeta, abstractmethod
from .CommonListener import *
from ...common.PropertyNames import *
from ...common.PropertyNames import PropertyNames
'''
@author rpiterman

View File

@@ -16,9 +16,8 @@
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
import time
from .DataAware import *
from .DataAware import *
from .UnoDataAware import *
from .CommonListener import ItemListenerProcAdapter
from .DataAware import DataAware
class RadioDataAware(DataAware):

View File

@@ -15,9 +15,10 @@
# except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
from .DataAware import *
from .DataAware import *
from ...common.Helper import *
import uno
from .CommonListener import ItemListenerProcAdapter, TextListenerProcAdapter
from .DataAware import DataAware, PropertyNames
from ...common.Helper import Helper
'''
@author rpiterman