From 418189c68e71c31450a22dfd2abd4ff38db72820 Mon Sep 17 00:00:00 2001 From: Lynne Date: Wed, 18 Sep 2019 21:27:36 +1000 Subject: [PATCH] corrected import names --- app/webui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/webui.py b/app/webui.py index 6112789..3a22a79 100644 --- a/app/webui.py +++ b/app/webui.py @@ -12,8 +12,8 @@ import functions from pages.home import home from pages.settings import settings from pages.bot.edit import bot_edit -from pages.bot.accounts_add import accounts_add -from pages.bot.create import create +from pages.bot.accounts_add import bot_accounts_add +from pages.bot.create import bot_create cfg = json.load(open("config.json"))