mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-22 05:27:25 +00:00
delete temporary imports
This commit is contained in:
parent
535a07425b
commit
e44872e523
@ -105,11 +105,15 @@ def create_app():
|
|||||||
# Extract the brickdb if it's not already extracted
|
# Extract the brickdb if it's not already extracted
|
||||||
materials = pathlib.Path(f'{app.config["CACHE_LOCATION"]}Materials.xml')
|
materials = pathlib.Path(f'{app.config["CACHE_LOCATION"]}Materials.xml')
|
||||||
if not materials.is_file():
|
if not materials.is_file():
|
||||||
|
# unzip the brickdb, and remove the import after
|
||||||
from zipfile import ZipFile
|
from zipfile import ZipFile
|
||||||
with ZipFile(f"{app.config['CLIENT_LOCATION']}res/brickdb.zip","r") as zip_ref:
|
with ZipFile(f"{app.config['CLIENT_LOCATION']}res/brickdb.zip","r") as zip_ref:
|
||||||
zip_ref.extractall(app.config["CACHE_LOCATION"])
|
zip_ref.extractall(app.config["CACHE_LOCATION"])
|
||||||
|
del ZipFile
|
||||||
|
# copy over the brick primitives, and remove the import after
|
||||||
from shutil import copytree
|
from shutil import copytree
|
||||||
copytree(f"{app.config['CLIENT_LOCATION']}res/brickprimitives", f"{app.config['CACHE_LOCATION']}brickprimitives")
|
copytree(f"{app.config['CLIENT_LOCATION']}res/brickprimitives", f"{app.config['CACHE_LOCATION']}brickprimitives")
|
||||||
|
del copytree
|
||||||
|
|
||||||
return app
|
return app
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user