Skip to content

Commit 12c3f4e

Browse files
Add encoding
1 parent 61a2c26 commit 12c3f4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/covasim_/vaccinating_elderly/example_vaccine.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
import pandas as pd
23
import numpy as np
34
import covasim as cv # Version used in our study is 3.07
@@ -200,7 +201,7 @@ def run_sim_with_pars(pars_dict: dict, desired_outputs: [str], n_runs: int = 1,
200201
logger.info("Rand Seed: %s", rand_seed)
201202
sim = cv.Sim(pars=pars_dict)
202203
m_sim = cv.MultiSim(sim)
203-
m_sim.run(n_runs=1, verbose=verbose, n_cpus=1)
204+
m_sim.run(n_runs=1, verbose=False, n_cpus=1)
204205

205206
for run in m_sim.sims:
206207
results = run.results

0 commit comments

Comments
 (0)