Removed star imports.

This commit is contained in:
Jeremy Fincher 2003-10-05 13:02:56 +00:00
parent ec0de6431d
commit ef517515f7
6 changed files with 6 additions and 6 deletions

View File

@ -80,7 +80,7 @@ is available as examples/Random.py):
Add the module docstring here. This will be used by the setup.py script. Add the module docstring here. This will be used by the setup.py script.
""" """
from baseplugin import * import plugins
import utils import utils
import privmsgs import privmsgs

View File

@ -31,7 +31,7 @@
import supybot import supybot
from fix import * import fix
from questions import * from questions import *
import os import os

View File

@ -50,7 +50,7 @@ template = '''
Add the module docstring here. This will be used by the setup.py script. Add the module docstring here. This will be used by the setup.py script.
""" """
from baseplugin import * import plugins
import utils import utils
import privmsgs import privmsgs

View File

@ -2,7 +2,7 @@
import supybot import supybot
from fix import * import fix
import os import os
import sys import sys

View File

@ -37,7 +37,7 @@ conf.confDir = 'test-conf'
conf.logDir = 'test-log' conf.logDir = 'test-log'
conf.replyWhenNotCommand = False conf.replyWhenNotCommand = False
from fix import * import fix
import gc import gc
import re import re

View File

@ -40,7 +40,7 @@ import traceback
if 'src' not in sys.path: if 'src' not in sys.path:
sys.path.insert(0, 'src') sys.path.insert(0, 'src')
from fix import * import fix
import conf import conf
import callbacks import callbacks