Update my_pages/information_loss.py
Browse files
my_pages/information_loss.py
CHANGED
|
@@ -86,6 +86,6 @@ def render():
|
|
| 86 |
col1, col2 = st.columns(2)
|
| 87 |
for i, item in enumerate(display_features_list):
|
| 88 |
if i % 2 == 0:
|
| 89 |
-
col1.markdown(f"- {item
|
| 90 |
else:
|
| 91 |
-
col2.markdown(f"- {item
|
|
|
|
| 86 |
col1, col2 = st.columns(2)
|
| 87 |
for i, item in enumerate(display_features_list):
|
| 88 |
if i % 2 == 0:
|
| 89 |
+
col1.markdown(f"- {item}")
|
| 90 |
else:
|
| 91 |
+
col2.markdown(f"- {item}")
|