Update app.py
Browse filesFixing a weird error called module not found, even though matplotlib should be installed as default, but I don't need it in my app anyway
app.py
CHANGED
@@ -12,7 +12,6 @@ import gradio as gr
|
|
12 |
import pandas as pd
|
13 |
import random
|
14 |
import csv
|
15 |
-
import matplotlib
|
16 |
import plotly.graph_objects as go
|
17 |
import matplotlib.pyplot as plt
|
18 |
import simpy.resources
|
|
|
12 |
import pandas as pd
|
13 |
import random
|
14 |
import csv
|
|
|
15 |
import plotly.graph_objects as go
|
16 |
import matplotlib.pyplot as plt
|
17 |
import simpy.resources
|