move to src folder

This commit is contained in:
cupcakearmy 2019-06-13 09:13:49 +02:00
parent 6daf29d9cc
commit 4bda6a7ed3
9 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
from telegram.ext import CallbackContext
from telegram import Update
from LimitedList import LimitedList
from Utils import parse_command, config, Section
from src.LimitedList import LimitedList
from src.Utils import parse_command, config, Section
def get_watchlist(context: CallbackContext) -> LimitedList:

View File

@ -2,10 +2,10 @@ from asyncio import sleep
from datetime import datetime, timedelta
from telegram.ext import Updater, CommandHandler
from Background import interval
from Market import Market
from Utils import persistence, config, Section
from Commands import watchlist_add, watchlist_delete, watchlist_all, watchlist_clear, set_api_key, get_api_key
from src.Background import interval
from src.Market import Market
from src.Utils import persistence, config, Section
from src.Commands import watchlist_add, watchlist_delete, watchlist_all, watchlist_clear, set_api_key, get_api_key
updater: Updater = Updater(config['token'], use_context=True, persistence=persistence)