fix base import

This commit is contained in:
justcool393 2023-02-25 13:05:49 -06:00 committed by Ben Rog-Wilhelm
parent 9b94e524bb
commit 82e4982261
2 changed files with 3 additions and 2 deletions

View file

@ -92,4 +92,5 @@ from files.helpers.security import *
# Then the specific stuff we don't want stomped on # Then the specific stuff we don't want stomped on
from files.helpers.lazy import lazy from files.helpers.lazy import lazy
from files.__main__ import Base, app, cache from files.classes.base import Base
from files.__main__ import app, cache

View file

@ -17,7 +17,7 @@ from .mod_logs import *
from .mod import * from .mod import *
from .exiles import * from .exiles import *
from .sub_block import * from .sub_block import *
from files.__main__ import app, Base, cache from files.__main__ import app, cache
from files.helpers.security import * from files.helpers.security import *
from files.helpers.assetcache import assetcache_path from files.helpers.assetcache import assetcache_path
from files.helpers.contentsorting import apply_time_filter, sort_objects from files.helpers.contentsorting import apply_time_filter, sort_objects