From 6a60dc08a510a93edafc3ce5120d7ef08b03199f Mon Sep 17 00:00:00 2001 From: Lew Goldstein <125527138+Lew-Goldstein@users.noreply.github.com> Date: Thu, 13 Apr 2023 18:06:33 -0500 Subject: [PATCH] Removed deprecated dependencies that are now integrated dash_bootstrap_components, dash_html_components, and dash.dependencies are now integrated into core dash, so modified Import statements to reflect this change. --- demos/pyvista-terrain-following-mesh/app.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/demos/pyvista-terrain-following-mesh/app.py b/demos/pyvista-terrain-following-mesh/app.py index ebfb79c..7c55ba0 100644 --- a/demos/pyvista-terrain-following-mesh/app.py +++ b/demos/pyvista-terrain-following-mesh/app.py @@ -1,9 +1,10 @@ import dash +from dash import dcc, html, Input, Output import dash_vtk import dash_bootstrap_components as dbc -import dash_html_components as html -import dash_core_components as dcc -from dash.dependencies import Input, Output, State +#import dash_html_components as html +#import dash_core_components as dcc +#from dash.dependencies import Input, Output, State import random import json