Skip to content

Commit d38999b

Browse files
Merge pull request #671 from linsword13/empty-repeat
Skip stat calc when no aggregatable FOMs
2 parents ac89705 + 4568d9b commit d38999b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/ramble/ramble/application.py

+3
Original file line numberDiff line numberDiff line change
@@ -1903,6 +1903,9 @@ def is_numeric(value):
19031903

19041904
# Iterate through the aggregated foms, calculate stats, and insert into results
19051905
for context, fom_dict in repeat_foms.items():
1906+
if not fom_dict:
1907+
continue
1908+
19061909
context_map = {
19071910
"name": context,
19081911
"foms": [],

0 commit comments

Comments
 (0)