Spaces:
Runtime error
Runtime error
Juan Perez Tejada
commited on
Commit
·
60f5b9f
1
Parent(s):
2b01264
Disable pylint rules
Browse files- app.py → GnosisPages.py +1 -0
- README.md +2 -2
- pages/01_How_to_use.py +1 -0
- pages/02_About.py +1 -0
app.py → GnosisPages.py
RENAMED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
""" A Streamlit app for GnosisPages. """
|
| 2 |
import os
|
| 3 |
import streamlit as st
|
|
|
|
| 1 |
+
# pylint: disable=invalid-name
|
| 2 |
""" A Streamlit app for GnosisPages. """
|
| 3 |
import os
|
| 4 |
import streamlit as st
|
README.md
CHANGED
|
@@ -4,7 +4,7 @@ emoji: 📝
|
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: pink
|
| 6 |
sdk: streamlit
|
| 7 |
-
app_file:
|
| 8 |
pinned: false
|
| 9 |
license: mit
|
| 10 |
---
|
|
@@ -73,7 +73,7 @@ Follow the next steps to set up GnosisPages in your local environment:
|
|
| 73 |
```
|
| 74 |
6. Run on your local environment
|
| 75 |
```bash
|
| 76 |
-
streamlit run
|
| 77 |
```
|
| 78 |
|
| 79 |
## Deployment
|
|
|
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: pink
|
| 6 |
sdk: streamlit
|
| 7 |
+
app_file: GnosisPages.py
|
| 8 |
pinned: false
|
| 9 |
license: mit
|
| 10 |
---
|
|
|
|
| 73 |
```
|
| 74 |
6. Run on your local environment
|
| 75 |
```bash
|
| 76 |
+
streamlit run GnosisPages.py
|
| 77 |
```
|
| 78 |
|
| 79 |
## Deployment
|
pages/01_How_to_use.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
"""Instructions on how to use the website"""
|
| 2 |
import streamlit as st
|
| 3 |
|
|
|
|
| 1 |
+
# pylint: disable=invalid-name
|
| 2 |
"""Instructions on how to use the website"""
|
| 3 |
import streamlit as st
|
| 4 |
|
pages/02_About.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
"""Collection's Page"""
|
| 2 |
import streamlit as st
|
| 3 |
import openai
|
|
|
|
| 1 |
+
# pylint: disable=invalid-name
|
| 2 |
"""Collection's Page"""
|
| 3 |
import streamlit as st
|
| 4 |
import openai
|