From ddcb8df904790d8e728de9e666964953753ef6b5 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Mon, 21 Apr 2025 00:19:44 +0200 Subject: [PATCH] Removed unused import, add dcc dependency --- app.py | 1 - pyproject.toml | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 647a386..f5ca7a2 100644 --- a/app.py +++ b/app.py @@ -1,5 +1,4 @@ from dash import Dash, html, dcc, callback, Output, Input, dash_table -import plotly.express as px import polars as pl import dash_bootstrap_components as dbc diff --git a/pyproject.toml b/pyproject.toml index 0640f72..5f52b1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,8 @@ authors = [ dependencies = [ "dash", "polars", - "gunicorn" + "gunicorn", + "dash-bootstrap-components" ] [project.optional-dependencies]