summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-03-20 17:07:24 +0000
committerGerrit Code Review <review@openstack.org>2020-03-20 17:07:24 +0000
commitda7226a5564c783522a597a4ff3a3749b026f57d (patch)
treeef57e8d741b1f8cca3a0a13a60f6b89208ac2c7c
parent332457bc875401ba990a50c2d7ed14f49ea4e462 (diff)
parent819663d1343a5025e2f677803b0faa91acc83318 (diff)
downloadpython-openstackclient-da7226a5564c783522a597a4ff3a3749b026f57d.tar.gz
Merge "Update the content about Import Format"
-rw-r--r--doc/source/contributor/developing.rst21
1 files changed, 12 insertions, 9 deletions
diff --git a/doc/source/contributor/developing.rst b/doc/source/contributor/developing.rst
index bd9197d7..5b859199 100644
--- a/doc/source/contributor/developing.rst
+++ b/doc/source/contributor/developing.rst
@@ -176,18 +176,21 @@ or
Standardize Import Format
=========================
-.. _`Import Order Guide`: https://docs.openstack.org/hacking/latest/user/hacking.html#imports
+More information about Import Format, see `Import Order Guide
+<https://docs.openstack.org/hacking/latest/user/hacking.html#imports>`__.
The import order shows below:
-* {{stdlib imports in human alphabetical order}}
-* \n
-* {{third-party lib imports in human alphabetical order}}
-* \n
-* {{project imports in human alphabetical order}}
-* \n
-* \n
-* {{begin your code}}
+.. code-block:: none
+
+ {{stdlib imports in human alphabetical order}}
+ \n
+ {{third-party lib imports in human alphabetical order}}
+ \n
+ {{project imports in human alphabetical order}}
+ \n
+ \n
+ {{begin your code}}
Example
~~~~~~~