NIFI-12610: Corrected default_value example in Python Developer guide

This closes #8245

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
Joe Gresock 2024-01-15 08:26:15 -05:00 committed by exceptionfactory
parent 3ebad40fae
commit 1e27cb907a
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ class PrettyPrintJson(FlowFileTransform):
numspaces = PropertyDescriptor(name="Number of Spaces",
description="Number of spaces to use for pretty-printing",
validators=[StandardValidators.POSITIVE_INTEGER_VALIDATOR],
defaultValue="4",
default_value="4",
required=True)
self.descriptors = [numspaces]