From 0e330d9484615d2bea714999e0256b1c93a2832e Mon Sep 17 00:00:00 2001 From: Callum J Hays Date: Sun, 2 Jul 2023 23:18:26 +1000 Subject: [PATCH] fix(deps): forgot one package --- mathpad/simulate_dynamic_system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mathpad/simulate_dynamic_system.py b/mathpad/simulate_dynamic_system.py index de57529..86eb767 100644 --- a/mathpad/simulate_dynamic_system.py +++ b/mathpad/simulate_dynamic_system.py @@ -1,11 +1,10 @@ -from typing import Collection, Set, List, Optional, Tuple +from typing import Collection, Set, List, Tuple from itertools import zip_longest import sympy import numpy as np from sympy.core.function import Function, AppliedUndef from sympy import Derivative -import plotly.graph_objects as go from sympy.utilities.lambdify import lambdify from scipy.integrate import RK45 @@ -39,6 +38,7 @@ def simulate_dynamic_system( "simulates a differential system specified by dynamics_equations from initial conditions at x_axis=0 (typically t=0) to x_final" from IPython.display import display import plotly.io as pio + import plotly.graph_objects as go from tqdm import tqdm verbose = verbose or explain