From b2a8703ace613e5a3ba93348ea3d8397eac71ce4 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Wed, 3 Jan 2024 09:55:06 -0700 Subject: [PATCH] Remove unnecessary comma from docstring Co-authored-by: Jim Bosch --- .../pex/config/configurableActions/_configurableActionField.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/pex/config/configurableActions/_configurableActionField.py b/python/lsst/pex/config/configurableActions/_configurableActionField.py index 2e8402d..3fb9c8d 100644 --- a/python/lsst/pex/config/configurableActions/_configurableActionField.py +++ b/python/lsst/pex/config/configurableActions/_configurableActionField.py @@ -49,7 +49,7 @@ class ConfigurableActionField(ConfigField[ActionTypeVar]): default : `lsst.pex.config.Config`, optional If default is `None`, the field will default to a default-constructed instance of ``dtype``. Additionally, to allow for fewer deep-copies, - assigning an instance of ``ConfigField`` to ``dtype`` itself, is + assigning an instance of ``ConfigField`` to ``dtype`` itself is considered equivalent to assigning a default-constructed sub-config. This means that the argument default can be ``dtype``, as well as an instance of ``dtype``.