Update st_runner.py

这个提交包含在:
op07n 2020-01-21 07:56:22 +01:00 提交者 GitHub
父节点 3ab93a57fe
当前提交 b064e23f23
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 2 次插入1 次删除

查看文件

@ -22,7 +22,8 @@ for basename in os.listdir(folder):
# Make a UI to run different files.
def format_func(s):
return s.split("/")[-1].split(".")[0]
els = s.split("/")[-1].split(".")[0].split("_")
return " ".join(el for el in els).capitalize()
fname_to_run = st.sidebar.selectbox(