WebHost: optimize imports

This commit is contained in:
Fabian Dill
2022-10-17 01:08:31 +02:00
committed by Fabian Dill
parent acf7fda26a
commit bb46ee7fc1
17 changed files with 61 additions and 55 deletions

View File

@@ -3,10 +3,11 @@ import os
import jinja2.exceptions
from flask import request, redirect, url_for, render_template, Response, session, abort, send_from_directory
from pony.orm import count, commit, db_session
from .models import count, Seed, commit, Room, db_session, Command, UUID, uuid4
from worlds.AutoWorld import AutoWorldRegister
from . import app, cache
from .models import Seed, Room, Command, UUID, uuid4
def get_world_theme(game_name: str):