diff options
| author | Saniya Maheshwari <saniya.mah@gmail.com> | 2022-06-12 09:25:20 +0530 |
|---|---|---|
| committer | Saniya Maheshwari <saniya.mah@gmail.com> | 2022-06-12 09:25:20 +0530 |
| commit | 3313a404975c8483d368b0a039ef495347560002 (patch) | |
| tree | 92dc902ddeec9b40f443b50cc9f9a606550fec79 /docs/userguide | |
| parent | cfe9ece265e7498fe2bbde3634e62e50cec069a2 (diff) | |
| download | python-setuptools-git-3313a404975c8483d368b0a039ef495347560002.tar.gz | |
Fixed up indentation issue
Some extra indentation was causing the code block to be interpreted as a
code block within a blockquote.
Diffstat (limited to 'docs/userguide')
| -rw-r--r-- | docs/userguide/entry_point.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst index 822675d1..abf8023a 100644 --- a/docs/userguide/entry_point.rst +++ b/docs/userguide/entry_point.rst @@ -288,12 +288,12 @@ as follows: ``group``, and a ``value``. For example, after setting up the plugin package as described below, ``display_eps`` in the above code will look like this: [#package_metadata]_ - .. code-block:: python + .. code-block:: python - ( - EntryPoint(name='excl', value='timmins_plugin_fancy:excl_display', group='timmins.display'), - ..., - ) + ( + EntryPoint(name='excl', value='timmins_plugin_fancy:excl_display', group='timmins.display'), + ..., + ) ``display_eps`` will now be a list of ``EntryPoint`` objects, each referring to ``display()``-like functions defined by one or more installed plugin packages. Then, to import a specific |
