From 630c64cc1141010f868e165dc5069a028cf3c639 Mon Sep 17 00:00:00 2001 From: rstiskalek Date: Thu, 19 Oct 2023 16:25:48 +0100 Subject: [PATCH] Delete boring comments --- csiborgtools/field/density.py | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/csiborgtools/field/density.py b/csiborgtools/field/density.py index 8e92d9e..9191479 100644 --- a/csiborgtools/field/density.py +++ b/csiborgtools/field/density.py @@ -33,13 +33,7 @@ class BaseField(ABC): @property def box(self): - """ - Simulation box information and transformations. - - Returns - ------- - :py:class:`csiborgtools.units.CSiBORGBox` - """ + """Simulation box information and transformations.""" return self._box @box.setter @@ -52,13 +46,7 @@ class BaseField(ABC): @property def MAS(self): - """ - Mass-assignment scheme. - - Returns - ------- - str - """ + """Mass-assignment scheme.""" if self._MAS is None: raise ValueError("`MAS` is not set.") return self._MAS @@ -103,7 +91,6 @@ class DensityField(BaseField): Calculate the overdensity field from the density field. Defined as :math:`\rho/ <\rho> - 1`. Overwrites the input array. - Parameters ---------- delta : 3-dimensional array of shape `(grid, grid, grid)`