Fixed imports for modules

doc_update
Joey Hines 2018-08-21 15:36:51 -05:00
parent 1b1ff8ffbc
commit 330fa16970
12 changed files with 29 additions and 29 deletions

View File

@ -1,4 +1,4 @@
from DatabaseInterface import *
from geoffrey.DatabaseInterface import *
class Commands:

View File

@ -1,4 +1,4 @@
from DatabaseModels import *
from geoffrey.DatabaseModels import *
class DatabaseInterface:

View File

@ -7,9 +7,9 @@ from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, column_property, sessionmaker
from sqlalchemy.sql import expression
from BotConfig import bot_config
from BotErrors import *
from MinecraftAccountInfoGrabber import *
from geoffrey.BotConfig import bot_config
from geoffrey.BotErrors import *
from geoffrey.MinecraftAccountInfoGrabber import *
SQL_Base = declarative_base()

View File

@ -1,6 +1,6 @@
from itertools import zip_longest
from BotConfig import bot_config
from geoffrey.BotConfig import bot_config
def get_name(args):

View File

@ -8,8 +8,8 @@ import logging
import logging.handlers as handlers
from sys import stdout
import bot
from BotConfig import bot_config
from geoffrey import bot
from geoffrey.BotConfig import bot_config
def setup_logging():

View File

@ -2,7 +2,7 @@ from json import JSONDecodeError
import requests
from BotErrors import UsernameLookupFailed
from geoffrey.BotErrors import UsernameLookupFailed
uuid_lookup_url = 'https://api.mojang.com/users/profiles/minecraft/{}'
username_lookup_url = 'https://api.mojang.com/user/profiles/{}/names'

View File

@ -6,11 +6,11 @@ from discord.ext import commands
from discord.utils import oauth_url
from sqlalchemy.exc import OperationalError
from BotConfig import bot_config
from BotErrors import *
from Commands import Commands
from DatabaseModels import Player
from MinecraftAccountInfoGrabber import *
from geoffrey.BotConfig import bot_config
from geoffrey.BotErrors import *
from geoffrey.Commands import Commands
from geoffrey.DatabaseModels import Player
from geoffrey.MinecraftAccountInfoGrabber import *
logger = logging.getLogger(__name__)

View File

@ -1,8 +1,8 @@
from discord.ext import commands
from BotErrors import *
from DiscordHelperFunctions import *
from bot import bot_commands
from geoffrey.BotErrors import *
from geoffrey.DiscordHelperFunctions import *
from geoffrey.bot import bot_commands
@commands.cooldown(5, 60, commands.BucketType.user)

View File

@ -1,9 +1,9 @@
from discord import Game
from discord.ext import commands
from BotConfig import bot_config
from BotErrors import *
from bot import bot_commands
from geoffrey.BotConfig import bot_config
from geoffrey.BotErrors import *
from geoffrey.bot import bot_commands
def check_mod(user):

View File

@ -1,8 +1,8 @@
from discord.ext import commands
from BotErrors import *
from DiscordHelperFunctions import *
from bot import bot_commands
from geoffrey.BotErrors import *
from geoffrey.DiscordHelperFunctions import *
from geoffrey.bot import bot_commands
class Delete_Commands:

View File

@ -1,8 +1,8 @@
from discord.ext import commands
from BotErrors import *
from DiscordHelperFunctions import *
from bot import bot_commands
from geoffrey.BotErrors import *
from geoffrey.DiscordHelperFunctions import *
from geoffrey.bot import bot_commands
class Edit_Commands:

View File

@ -1,8 +1,8 @@
from discord.ext import commands
from BotErrors import *
from DiscordHelperFunctions import *
from bot import bot_commands
from geoffrey.BotErrors import *
from geoffrey.DiscordHelperFunctions import *
from geoffrey.bot import bot_commands
class Search_Commands: