Replace some wildcard imports with explicit ones.

This commit is contained in:
Emmanuel Gil Peyrot 2017-02-07 19:32:28 +00:00
parent e2901f09f6
commit 51eb62bb73
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ detected.
"""
from ..framework import CommandContainer, command, doc
from .hosts import *
from .hosts import ChatCommands, PrivateChatCommands, GroupChatCommands
class CustomCommonCommands(CommandContainer):
"""

View File

@ -38,7 +38,7 @@ from os.path import expanduser
from gi.repository import GLib
from ..framework import CommandContainer, command, doc
from .hosts import *
from .hosts import ChatCommands, PrivateChatCommands, GroupChatCommands
class Execute(CommandContainer):
AUTOMATIC = True

View File

@ -30,7 +30,7 @@ from ..errors import CommandError
from ..framework import CommandContainer, command, doc
from ..mapping import generate_usage
from .hosts import *
from .hosts import ChatCommands, PrivateChatCommands, GroupChatCommands
from . import execute
# This holds constants fron the logger, which we'll be using in some of our