You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2025. It is now read-only.
feat: Add reviewResult in AbstactAnnotation class (#1122)
Closes#1121 .
### Summary of Changes
added field reviewResult in AbstractAnnotation and changes all relevated
json files, dicts, and instantiation
### Testing Instructions
view and run the changed `test_annotations.py` file or import and export
api data with the existing commands (api, migrate, etc.).
Co-authored-by: Aclrian <[email protected]>
Co-authored-by: Lars Reimann <[email protected]>
comment=f"I made this parameter required because, even though it is always set to the same value ({sole_stringified_value}), that value is not a literal.",
f"I made this parameter optional because there is a statistically significant most common value (p-value {p_value:.2%} <= significance level {significance_level:.0%}).",
188
195
)
189
-
else:
190
-
return (
191
-
True,
192
-
f"I made this parameter required because there is no statistically significant most common value (p-value ({p_value:.2%}) > significance level ({significance_level:.0%}).",
193
-
)
196
+
return (
197
+
True,
198
+
f"I made this parameter required because there is no statistically significant most common value (p-value ({p_value:.2%}) > significance level ({significance_level:.0%}).",
0 commit comments