cyyeh commited on
Commit
7a699a5
·
1 Parent(s): e2f38ea
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -14,13 +14,13 @@ st.markdown(
14
  "**Checkout the source code [here](https://github.com/cyyeh/py-code-analyzer)**"
15
  )
16
 
17
- owner = st.text_input("Enter GitHub username", value="cyyeh")
18
- repo = st.text_input("Enter GitHib repo name", value="py-code-analyzer")
19
  path = st.text_input(
20
- "Enter target directory path. Default: the root directory",
21
  )
22
  ref = st.text_input(
23
- "Enter the name of the commit/branch/tag. Default: the repository's default branch",
24
  )
25
  clicked_ok_button = st.button("OK")
26
  st.markdown("---")
 
14
  "**Checkout the source code [here](https://github.com/cyyeh/py-code-analyzer)**"
15
  )
16
 
17
+ owner = st.text_input("Fill in the GitHub username", value="cyyeh")
18
+ repo = st.text_input("Fill in the GitHib repository", value="py-code-analyzer")
19
  path = st.text_input(
20
+ "Fill in the target directory path. Default: the root directory",
21
  )
22
  ref = st.text_input(
23
+ "Fill in the name of the commit/branch/tag. Default: the repository's default branch",
24
  )
25
  clicked_ok_button = st.button("OK")
26
  st.markdown("---")