mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Fixup some import issues
This commit is contained in:
parent
a10b98eeba
commit
85a7348571
4 changed files with 3 additions and 2 deletions
|
@ -28,7 +28,7 @@ from tipbot.log import log_error, log_warn, log_info, log_log
|
|||
from tipbot.utils import *
|
||||
from tipbot.irc import *
|
||||
from tipbot.redisdb import *
|
||||
import tipbot.command_manager
|
||||
from tipbot.command_manager import *
|
||||
|
||||
selected_coin = None
|
||||
modulenames = []
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#
|
||||
|
||||
import tipbot.config as config
|
||||
from tipbot.utils import *
|
||||
from tipbot.irc import *
|
||||
|
||||
commands = dict()
|
||||
|
|
|
@ -16,6 +16,7 @@ import tipbot.config as config
|
|||
from tipbot.log import log_error, log_warn, log_info, log_log
|
||||
from tipbot.utils import *
|
||||
from tipbot.redisdb import *
|
||||
from tipbot.command_manager import *
|
||||
|
||||
last_wallet_update_time = None
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@ import tipbot.coinspecs as coinspecs
|
|||
from tipbot.log import log_error, log_warn, log_info, log_log
|
||||
from tipbot.irc import *
|
||||
from tipbot.redisdb import *
|
||||
from tipbot.command_manager import *
|
||||
|
||||
|
||||
def GetPassword():
|
||||
|
|
Loading…
Reference in a new issue