We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b183661 commit efde789Copy full SHA for efde789
combo_cases_and_deaths/delphi_combo_cases_and_deaths/run.py
@@ -322,7 +322,7 @@ def run_module(params):
322
variants = [tuple((metric, geo_res)+sensor_signal(metric, sensor, smoother))
323
for (metric, geo_res, sensor, smoother) in
324
product(METRICS, GEO_RESOLUTIONS, SENSORS, SMOOTH_TYPES)]
325
- variants = [i for i in variants if "7dav" not in i[2] and "cumulative" not in i[2]]
+ variants = [i for i in variants if not ("7dav" in i[2] and "cumulative" in i[2])]
326
params = configure(variants, params)
327
logger = get_structured_logger(
328
__name__, filename=params["common"].get("log_filename"),
0 commit comments