From dadc514e7c8ebf13823b5b8b3fb18107295e6a86 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Wed, 31 Aug 2022 17:12:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F=20fix=20wrong=20import?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 77954a5..4d6461f 100644 --- a/src/main.py +++ b/src/main.py @@ -12,7 +12,7 @@ app.register_blueprint(asset_pages, url_prefix="/assets") if __name__ == "__main__": - from index import cache_bootstrap + from html_fn import cache_bootstrap cache_bootstrap() app.run(host="0.0.0.0", port=1030, debug=True, threaded=True)