Skip to content

Commit 8118f25

Browse files
committed
fix: download nltk data another way
1 parent 2983f85 commit 8118f25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
pip install pytest
2424
pip install -r requirements.txt
2525
export PYTHONPATH=`pwd`
26-
- name: Install NLTK data
26+
- name: Download NLTK data
2727
run: |
28-
python -m nltk.downloader punkt
28+
python -c "import nltk; nltk.download('punkt')
2929
- name: style-check
3030
run: |
3131
black --check assistant_skill_analysis

0 commit comments

Comments
 (0)