renamed --silent switch --quiet

This commit is contained in:
2020-10-01 12:06:52 +02:00
parent 4bfe9c9c0f
commit b608b12432
5 changed files with 7 additions and 7 deletions

View File

@ -23,7 +23,7 @@ def run_check(clargs):
chans = load_config(filename)
pvs = (epics.PV(ch) for ch in chans) # putting PV constructors into ThreadPoolExecutor has weird effects
get_data = DataGetter(clargs.timeout, clargs.silent)
get_data = DataGetter(clargs.timeout, clargs.quiet)
data = parallel(get_data, pvs, chans)
df = pd.DataFrame(data).T