fix syntax error, missing comma

This commit is contained in:
Corban-Lee Jones 2024-06-11 20:48:30 +01:00
parent 8febeae74b
commit 84e72adcd3

View File

@ -59,7 +59,7 @@ class Article:
published = datetime(*entry.published_parsed[0:-2]) if published_parsed else None
return cls(
guid=entry["guid"]
guid=entry["guid"],
title=entry.get("title"),
description=entry.get("description"),
url=entry.get("link"),