Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ indexes_not_lexed = not_lexed["idx"]
|
|
50 |
st.markdown("### Information about the extension:")
|
51 |
text = f"Extension {chosen_ext} has {max_docs} files, {df[df['extension'] == chosen_ext]['low_alphanum_count'].values[0]} with very low alphanumeric ratio, \
|
52 |
{df[df['extension'] == chosen_ext]['long_lines_count'].values[0]} with very long lines, and {df[df['extension'] == chosen_ext]['non_lexable_count'].values[0]} \
|
53 |
-
are not lexable
|
54 |
st.markdown(text)
|
55 |
|
56 |
col_1, _ = st.columns([2, 4])
|
|
|
50 |
st.markdown("### Information about the extension:")
|
51 |
text = f"Extension {chosen_ext} has {max_docs} files, {df[df['extension'] == chosen_ext]['low_alphanum_count'].values[0]} with very low alphanumeric ratio, \
|
52 |
{df[df['extension'] == chosen_ext]['long_lines_count'].values[0]} with very long lines, and {df[df['extension'] == chosen_ext]['non_lexable_count'].values[0]} \
|
53 |
+
are not lexable.\n These files are at indexes:\n {indexes_not_lexed}."
|
54 |
st.markdown(text)
|
55 |
|
56 |
col_1, _ = st.columns([2, 4])
|