Skip to content

Commit efde789

Browse files
committed
fix logic
1 parent b183661 commit efde789

File tree

1 file changed

+1
-1
lines changed
  • combo_cases_and_deaths/delphi_combo_cases_and_deaths

1 file changed

+1
-1
lines changed

combo_cases_and_deaths/delphi_combo_cases_and_deaths/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def run_module(params):
322322
variants = [tuple((metric, geo_res)+sensor_signal(metric, sensor, smoother))
323323
for (metric, geo_res, sensor, smoother) in
324324
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]]
325+
variants = [i for i in variants if not ("7dav" in i[2] and "cumulative" in i[2])]
326326
params = configure(variants, params)
327327
logger = get_structured_logger(
328328
__name__, filename=params["common"].get("log_filename"),

0 commit comments

Comments
 (0)