From 532543b4ef0d35eeac9e8c04a937ab7190ae5988 Mon Sep 17 00:00:00 2001 From: maskypy40 <60002142+maskypy40@users.noreply.github.com> Date: Wed, 17 Feb 2021 09:33:04 +0100 Subject: [PATCH] Remove empty lines from code-block In assert.rst at line 175 and further there is an example of an assert encountering comparisons. The code-block for this example starts with a comment (line 177) and then it has 2 empty lines. Comparing this example code (test_assert2.py) with the previously mentioned example code on the same page (i.e. test_assert1.py) you can see that there should not be 2 empty lines after the comment. These 2 empty lines are removed. --- doc/en/assert.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/en/assert.rst b/doc/en/assert.rst index b83e30e76..e6a23bcf3 100644 --- a/doc/en/assert.rst +++ b/doc/en/assert.rst @@ -175,8 +175,6 @@ when it encounters comparisons. For example: .. code-block:: python # content of test_assert2.py - - def test_set_comparison(): set1 = set("1308") set2 = set("8035")