Skip to content

Commit

Permalink
Merge pull request #671 from linsword13/empty-repeat
Browse files Browse the repository at this point in the history
Skip stat calc when no aggregatable FOMs
  • Loading branch information
douglasjacobsen authored Oct 2, 2024
2 parents ac89705 + 4568d9b commit d38999b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/ramble/ramble/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1903,6 +1903,9 @@ def is_numeric(value):

# Iterate through the aggregated foms, calculate stats, and insert into results
for context, fom_dict in repeat_foms.items():
if not fom_dict:
continue

context_map = {
"name": context,
"foms": [],
Expand Down

0 comments on commit d38999b

Please sign in to comment.