From 51eb62bb73e14c9e2a46099e63a19af566381e96 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 7 Feb 2017 19:32:28 +0000 Subject: [PATCH] Replace some wildcard imports with explicit ones. --- src/command_system/implementation/custom.py | 2 +- src/command_system/implementation/execute.py | 2 +- src/command_system/implementation/standard.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/command_system/implementation/custom.py b/src/command_system/implementation/custom.py index 3fa00d083..38cd2e2c3 100644 --- a/src/command_system/implementation/custom.py +++ b/src/command_system/implementation/custom.py @@ -35,7 +35,7 @@ detected. """ from ..framework import CommandContainer, command, doc -from .hosts import * +from .hosts import ChatCommands, PrivateChatCommands, GroupChatCommands class CustomCommonCommands(CommandContainer): """ diff --git a/src/command_system/implementation/execute.py b/src/command_system/implementation/execute.py index ab14f4ea1..767e761a5 100644 --- a/src/command_system/implementation/execute.py +++ b/src/command_system/implementation/execute.py @@ -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 diff --git a/src/command_system/implementation/standard.py b/src/command_system/implementation/standard.py index 8cdfa3516..bd263b669 100644 --- a/src/command_system/implementation/standard.py +++ b/src/command_system/implementation/standard.py @@ -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