Skip to content

Commit 5087747

Browse files
authored
Code block: :: missing and 4 spaces instead of 5
I just noticed the newly committed code block doesn't format as a code block without `::` in the paragraph before. Perhaps doesn't make a difference, but also corrected 5 spaces to 4 which seems standard.
1 parent 71b4995 commit 5087747

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

doc/en/goodpractices.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ for installing your application and any dependencies
1212
as well as the ``pytest`` package itself. This ensures your code and
1313
dependencies are isolated from the system Python installation.
1414

15-
First you need to place a ``setup.py`` file in the root of your package with the following minimum content:
15+
First you need to place a ``setup.py`` file in the root of your package with the following minimum content::
1616

17-
from setuptools import setup, find_packages
17+
from setuptools import setup, find_packages
1818

19-
20-
setup(name="PACKAGENAME", packages=find_packages())
19+
setup(name="PACKAGENAME", packages=find_packages())
2120

2221
Where ``PACKAGENAME`` is the name of your package. You can then install your package in "editable" mode by running from the same directory::
2322

0 commit comments

Comments
 (0)