]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix incorrect indentation in importlib.metadata.rst (GH-126189)
authorRafael Fontenelle <rffontenelle@users.noreply.github.com>
Wed, 30 Oct 2024 17:46:09 +0000 (14:46 -0300)
committerGitHub <noreply@github.com>
Wed, 30 Oct 2024 17:46:09 +0000 (10:46 -0700)
Doc/library/importlib.metadata.rst

index ddfc5c06d825c0a2807b84c788a6c0bb290f4110..37cd237357aa4bd326aa78f526cb5ebdea2c7a6a 100644 (file)
@@ -229,10 +229,10 @@ Distribution metadata
 .. class:: PackageMetadata
 
    A concrete implementation of the
-    `PackageMetadata protocol <https://importlib-metadata.readthedocs.io/en/latest/api.html#importlib_metadata.PackageMetadata>`_.
+   `PackageMetadata protocol <https://importlib-metadata.readthedocs.io/en/latest/api.html#importlib_metadata.PackageMetadata>`_.
 
-    In addition to providing the defined protocol methods and attributes, subscripting
-    the instance is equivalent to calling the :meth:`!get` method.
+   In addition to providing the defined protocol methods and attributes, subscripting
+   the instance is equivalent to calling the :meth:`!get` method.
 
 Every `Distribution Package <https://packaging.python.org/en/latest/glossary/#term-Distribution-Package>`_
 includes some metadata, which you can extract using the :func:`!metadata` function::