Update comments
All checks were successful
ci/woodpecker/push/lint Pipeline was successful

This commit is contained in:
Liam Steckler 2024-02-22 07:14:29 -08:00
parent 77fae5eda6
commit 132e628f4e

View file

@ -123,7 +123,7 @@ with Session(engine) as session:
article_record.last_updated_time.astimezone() != last_updated_time
)
except NoResultFound:
# Is a new article, or at least one that doesn't match based on the link
# Is a new article
article_record = KuowStory()
process_article = True
is_new_article = True
@ -157,7 +157,7 @@ with Session(engine) as session:
except (NameError, TypeError):
print("Could not find or load any tags from the 'tags' property")
# Remove duplicates
# Remove duplicate tags
tags = list(set(tags))
additional_tag_string = ""