Skip to content

Commit

Permalink
chore: Fix punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jan 25, 2024
1 parent 5e36626 commit 5bc03d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ Changelog
# Use of ProfileBuilder.release_schema_path() that warns.
- feat: Configure the expiration behavior of the responses cache using a ``REQUESTS_CACHE_EXPIRE_AFTER`` environment variable. See `requests-cache's documentation <https://requests-cache.readthedocs.io/en/stable/user_guide/expiration.html>`__ (``NEVER_EXPIRE`` is ``-1`` and ``EXPIRE_IMMEDIATELY`` is ``0``, in the `source <https://github.com/requests-cache/requests-cache/blob/main/requests_cache/policy/expiration.py>`__).
- fix: :meth:`ocdsextensionregistry.extension_version.ExtensionVersion.__repr__`: No longer errors if initialized with ``file_urls`` only.
- fix: :meth:`ocdsextensionregistry.extension_version.ExtensionVersion.get_url`: Raises clearer error if initialized with a Download URL only.
- fix: :meth:`ocdsextensionregistry.extension_version.ExtensionVersion.__repr__` no longer errors if initialized with ``file_urls`` only.
- fix: :meth:`ocdsextensionregistry.extension_version.ExtensionVersion.get_url` raises clearer error if initialized with a Download URL only.
- Add support for Sphinx 6.2 on Python 3.11.

0.2.2 (2023-06-05)
Expand Down
2 changes: 1 addition & 1 deletion ocdsextensionregistry/extension_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, data, input_url=None, url_pattern=None, file_urls=None):
#: The Download URL cell.
self.download_url = data['Download URL']
#: The URL that was provided in a list to
# :meth:`ocdsextensionregistry.profile_builder.ProfileBuilder.extensions`.
#: :meth:`ocdsextensionregistry.profile_builder.ProfileBuilder.extensions`.
self.input_url = input_url

self._url_pattern = url_pattern
Expand Down

0 comments on commit 5bc03d5

Please sign in to comment.