From 2a539e98430f15052360526336b0024c63102522 Mon Sep 17 00:00:00 2001 From: Immanuel Haffner Date: Mon, 17 Nov 2025 15:55:53 +0100 Subject: [PATCH] Fix use of deprecated `run_server` Use `app.run()` instead --- python/Plotly/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Plotly/app.py b/python/Plotly/app.py index 80114b40..f36e0f38 100644 --- a/python/Plotly/app.py +++ b/python/Plotly/app.py @@ -242,4 +242,4 @@ def update_output(zip_plot, column_map_show): if __name__ == "__main__": - app.run_server(debug=True) + app.run(debug=True)