From 6bf0e1b2ac8f55335fb21104c92dad72ba654f74 Mon Sep 17 00:00:00 2001 From: sean1832 Date: Sun, 19 Feb 2023 04:27:44 +1100 Subject: [PATCH] chore: add capital for version and author --- Seanium_Brain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Seanium_Brain.py b/Seanium_Brain.py index f91c10d..e74252f 100644 --- a/Seanium_Brain.py +++ b/Seanium_Brain.py @@ -150,8 +150,8 @@ with st.sidebar: # info st.markdown('---') st.markdown(f"# {util.read_json_at(MANIFEST, 'name')}") - st.markdown(_('version') + f": {util.read_json_at(MANIFEST, 'version')}") - st.markdown(_('author') + f": {util.read_json_at(MANIFEST, 'author')}") + st.markdown(_('Version') + f": {util.read_json_at(MANIFEST, 'version')}") + st.markdown(_('Author') + f": {util.read_json_at(MANIFEST, 'author')}") st.markdown("[" + _('Report bugs') + "]" + f"({util.read_json_at(MANIFEST, 'bugs')})") st.markdown("[" + _('Github Repo') + "]" + f"({util.read_json_at(MANIFEST, 'homepage')})")