Replace some wildcard imports with explicit ones.
This commit is contained in:
parent
e2901f09f6
commit
51eb62bb73
|
@ -35,7 +35,7 @@ detected.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from ..framework import CommandContainer, command, doc
|
from ..framework import CommandContainer, command, doc
|
||||||
from .hosts import *
|
from .hosts import ChatCommands, PrivateChatCommands, GroupChatCommands
|
||||||
|
|
||||||
class CustomCommonCommands(CommandContainer):
|
class CustomCommonCommands(CommandContainer):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -38,7 +38,7 @@ from os.path import expanduser
|
||||||
from gi.repository import GLib
|
from gi.repository import GLib
|
||||||
|
|
||||||
from ..framework import CommandContainer, command, doc
|
from ..framework import CommandContainer, command, doc
|
||||||
from .hosts import *
|
from .hosts import ChatCommands, PrivateChatCommands, GroupChatCommands
|
||||||
|
|
||||||
class Execute(CommandContainer):
|
class Execute(CommandContainer):
|
||||||
AUTOMATIC = True
|
AUTOMATIC = True
|
||||||
|
|
|
@ -30,7 +30,7 @@ from ..errors import CommandError
|
||||||
from ..framework import CommandContainer, command, doc
|
from ..framework import CommandContainer, command, doc
|
||||||
from ..mapping import generate_usage
|
from ..mapping import generate_usage
|
||||||
|
|
||||||
from .hosts import *
|
from .hosts import ChatCommands, PrivateChatCommands, GroupChatCommands
|
||||||
from . import execute
|
from . import execute
|
||||||
|
|
||||||
# This holds constants fron the logger, which we'll be using in some of our
|
# This holds constants fron the logger, which we'll be using in some of our
|
||||||
|
|
Loading…
Reference in New Issue