Spaces:
Runtime error
Runtime error
Merge branch 'main' into development
Browse files- .github/workflows/pylint.yml +2 -1
- wk_flow_requirements.txt +1 -1
.github/workflows/pylint.yml
CHANGED
|
@@ -18,6 +18,7 @@ jobs:
|
|
| 18 |
run: |
|
| 19 |
python -m pip install --upgrade pip
|
| 20 |
pip install -r wk_flow_requirements.txt
|
|
|
|
| 21 |
- name: Analysing the code with pylint
|
| 22 |
run: |
|
| 23 |
-
pylint $(git ls-files '*.py')
|
|
|
|
| 18 |
run: |
|
| 19 |
python -m pip install --upgrade pip
|
| 20 |
pip install -r wk_flow_requirements.txt
|
| 21 |
+
pip install pylint
|
| 22 |
- name: Analysing the code with pylint
|
| 23 |
run: |
|
| 24 |
+
pylint $(git ls-files '*.py')
|
wk_flow_requirements.txt
CHANGED
|
@@ -5,4 +5,4 @@ openai==1.47.1
|
|
| 5 |
python-dotenv==1.0.1
|
| 6 |
streamlit==1.38.0
|
| 7 |
tiktoken==0.7.0
|
| 8 |
-
PyMuPDF==1.24.10
|
|
|
|
| 5 |
python-dotenv==1.0.1
|
| 6 |
streamlit==1.38.0
|
| 7 |
tiktoken==0.7.0
|
| 8 |
+
PyMuPDF==1.24.10
|