From 46f6deb82ce81574369e529da95ff1e946422382 Mon Sep 17 00:00:00 2001 From: Kyle Oman Date: Wed, 11 Oct 2023 13:49:16 +0100 Subject: [PATCH] Add missing linebreak in docs. --- docs/source/masking/index.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/masking/index.rst b/docs/source/masking/index.rst index 59d6761e..e597ff8c 100644 --- a/docs/source/masking/index.rst +++ b/docs/source/masking/index.rst @@ -77,6 +77,7 @@ For instance, to add the diagonally opposed octant to the selection made above (and so obtain a region shaped like two cubes with a single corner touching): .. code-block:: python + additional_region = [[0.5 * b, 1.0 * b] for b in boxsize] mask.constrain_spatial(additional_region, intersect=True)