I'm creating a python toolbox and can't figure out how I can prevent the "Add Another" button from appearing. Below is the interface of my tool and the code that shows the property of the second parameter, Arterial Weights. I figured setting the `multiValue=False` would do the trick, but it didn't work.  🤔

param = arcpy.Parameter(
displayName='{0} Weights'.format(mode_name.capitalize()),
name='{0}_weights'.format(mode_name),
datatype='GPValueTable',
parameterType='Required',
direction='Input',
multiValue=False
)Â IÂ