Skip to content

Commit b681403

Browse files
committed
Fixed format
1 parent a104618 commit b681403

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/utils/bioinfo_analysis.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ def get_bioinfo_analyis_fields_utilization(schema_obj=None):
8888
b_data["fields_value"][f_name] = 0
8989
continue
9090
# b_data[schema_name][f_name] = [count]
91-
count_not_empty = b_field_obj_info.exclude(value__in=["None", "Not Provided", ""]).count()
91+
count_not_empty = b_field_obj_info.exclude(
92+
value__in=["None", "Not Provided", ""]
93+
).count()
9294
b_data["fields_value"][f_name] = count_not_empty
9395
if count_not_empty == 0:
9496
b_data["always_none"].append(f_name)

0 commit comments

Comments
 (0)