Spaces:
Runtime error
Runtime error
Sebastian Gehrmann
commited on
Commit
•
3578aa2
1
Parent(s):
ef1f338
- datacards/considerations.py +1 -1
- datacards/context.py +1 -1
datacards/considerations.py
CHANGED
@@ -86,7 +86,7 @@ def considerations_summary():
|
|
86 |
[len(dct) for dct in st.session_state.card_dict.get("considerations", {}).values()]
|
87 |
)
|
88 |
with st.expander(
|
89 |
-
f"
|
90 |
):
|
91 |
completion_markdown = ""
|
92 |
completion_markdown += (
|
|
|
86 |
[len(dct) for dct in st.session_state.card_dict.get("considerations", {}).values()]
|
87 |
)
|
88 |
with st.expander(
|
89 |
+
f"Considerations for Using Data Completion - {total_filled} of {N_FIELDS}", expanded=False
|
90 |
):
|
91 |
completion_markdown = ""
|
92 |
completion_markdown += (
|
datacards/context.py
CHANGED
@@ -97,7 +97,7 @@ def context_summary():
|
|
97 |
[len(dct) for dct in st.session_state.card_dict.get("context", {}).values()]
|
98 |
)
|
99 |
with st.expander(
|
100 |
-
f"
|
101 |
):
|
102 |
completion_markdown = ""
|
103 |
completion_markdown += (
|
|
|
97 |
[len(dct) for dct in st.session_state.card_dict.get("context", {}).values()]
|
98 |
)
|
99 |
with st.expander(
|
100 |
+
f"Broader Social Context Completion - {total_filled} of {N_FIELDS}", expanded=False
|
101 |
):
|
102 |
completion_markdown = ""
|
103 |
completion_markdown += (
|