-
Notifications
You must be signed in to change notification settings - Fork 389
HMA defaults to norm distribution for child tables #2710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2710 +/- ##
=======================================
Coverage 98.18% 98.19%
=======================================
Files 74 74
Lines 7781 7794 +13
=======================================
+ Hits 7640 7653 +13
Misses 141 141
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
70623eb
to
fc6b9d7
Compare
num_data_columns = columns_per_table[table_name] | ||
if num_data_columns == 0: | ||
# no parameter columns are generated if there are no data or extended columns | ||
num_data_columns = columns_per_table[table_name][0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does changing the meaning of data_columns
to be a subset of the former data_columns
seem reasonable?
) | ||
|
||
return columns_per_table | ||
return {key: sum(value) for key, value in columns_per_table.items()} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace key
and value
with table_name
and columns_list
Resolves #2665
CU-86b6gwz0p