Skip to content

Commit

Permalink
Make quotation marks consistent again
Browse files Browse the repository at this point in the history
  • Loading branch information
claui committed Oct 6, 2024
1 parent bf0e373 commit ac2bddb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release_feed_mediola/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def release_feed(product_name: str | None) -> str:
raise ValueError("Name cannot be empty.")
if product_name not in packages_by_name:
raise ValueError(
f'Name must be one of: {", ".join(MEDIOLA_PRODUCTS)}',
f"Name must be one of: {", ".join(MEDIOLA_PRODUCTS)}",
)
return feed.from_dict(
product_name,
Expand Down
4 changes: 2 additions & 2 deletions release_feed_mediola/feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def from_dict(
generator.description(FEED_DESCRIPTION_TEMPLATE.format(**context))
for info in filtered_release_infos:
entry = generator.add_entry()
entry.id(f'{FEED_NAMESPACE}/versions/{info["version"]}')
entry.id(f"{FEED_NAMESPACE}/versions/{info["version"]}")
entry.title(info["version"])
entry.description(f'Version {info["version"]}')
entry.description(f"Version {info["version"]}")
entry.link(**web_link)
entry.rights(info["license"])
entry.pubDate(_datetime_from_iso_date(info.get("releasedate")))
Expand Down

0 comments on commit ac2bddb

Please sign in to comment.