Spaces:
Runtime error
Runtime error
update
Browse files
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("
|
| 18 |
-
repo = st.text_input("
|
| 19 |
path = st.text_input(
|
| 20 |
-
"
|
| 21 |
)
|
| 22 |
ref = st.text_input(
|
| 23 |
-
"
|
| 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("---")
|