Skip to content

Commit

Permalink
removed tqdm package
Browse files Browse the repository at this point in the history
  • Loading branch information
lrdossan committed Feb 17, 2023
1 parent 531ec4e commit 36aa7e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions caimira/apps/calculator/report_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ def generate_permalink(base_url, calculator_prefix, form: FormData):


def uncertainties_plot(exposure_models):
from tqdm import tqdm
fig = plt.figure(figsize=(7, 10))
viral_loads = np.linspace(2, 10, 600)

Expand All @@ -188,7 +187,7 @@ def uncertainties_plot(exposure_models):
lower_percentiles = []
upper_percentiles = []

for vl in tqdm(viral_loads):
for vl in viral_loads:
model_vl = dataclass_utils.replace(exposure_mc,
concentration_model = models.ConcentrationModel(
room=concentration_model.room,
Expand Down

0 comments on commit 36aa7e1

Please sign in to comment.