Skip to content

Commit f4ec261

Browse files
committed
fix: typo in pyyaml package name
1 parent 1935044 commit f4ec261

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/auto-writer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v4
1414
- name: Install Python libraries
1515
run: |
16-
pip install openai bs4 requests yaml
16+
pip install openai bs4 requests pyyaml
1717
- name: Article creation script
1818
env:
1919
DS_APIKEY: ${{ secrets.DS_APIKEY }}

writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def scrape_website(url, css_selector):
3737
return elements
3838
else: return []
3939

40-
# New function to get existing blog posts
40+
# Get existing blog posts
4141
def get_existing_blog_posts():
4242
blog_posts = []
4343
blog_paths = glob.glob("src/content/blog/*/index.md")

0 commit comments

Comments
 (0)