From 26c24e13429f76ae8b3fb10c1a5f3b515ba3ba04 Mon Sep 17 00:00:00 2001 From: none Date: Sun, 28 Jan 2024 22:44:14 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=BE=20=D0=BD=D0=B0=D0=B7=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20?= =?UTF-8?q?=D0=B2=D0=BA=D0=BB=D0=B0=D0=B4=D0=BA=D0=B8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site.py b/site.py index bb11fac..ace08b4 100644 --- a/site.py +++ b/site.py @@ -7,7 +7,7 @@ els = list(db.keys()) ###### ОФОРМЛЕНИЕ ####### from dash import Dash, dcc, html, Input, Output,callback -app = Dash(__name__) +app = Dash(__name__, title="SS14 Tools") # Форматируем список для красоты @@ -19,7 +19,7 @@ def list_form(ll): 'chemicals': '🧪'} for i in ll: - print(db[i][1]) + #print(db[i][1]) if db[i][1] in imgs: formatted.append(imgs[db[i][1]] + ' ' + i) else: @@ -93,5 +93,5 @@ def update_output(reaction, amount): if __name__ == '__main__': - app.run(debug=True) -# app.run(debug=False) +# app.run(debug=True) + app.run(debug=False)