From 0292a25b929ef0184be4c4442499b2a4fb5b8437 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 26 Jun 2020 22:36:30 -0400 Subject: [PATCH] remove duplicate line from docstring --- src/stepfunctions/steps/states.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/stepfunctions/steps/states.py b/src/stepfunctions/steps/states.py index b6d81e1..28744eb 100644 --- a/src/stepfunctions/steps/states.py +++ b/src/stepfunctions/steps/states.py @@ -538,7 +538,6 @@ def __init__(self, state_id, **kwargs): input_path (str, optional): Path applied to the state’s raw input to select some or all of it; that selection is used by the state. (default: '$') parameters (dict, optional): The value of this field becomes the effective input for the state. result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$') - result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$') output_path (str, optional): Path applied to the state’s output after the application of `result_path`, producing the effective output which serves as the raw input for the next state. (default: '$') """ super(Map, self).__init__(state_id, 'Map', **kwargs)