From 58d8089878f62af569cc526c2db5b9d2f4d157d0 Mon Sep 17 00:00:00 2001 From: David Marin Date: Sun, 30 Oct 2016 16:56:38 -0700 Subject: [PATCH] fix docstring for SparkJarStep --- mrjob/step.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrjob/step.py b/mrjob/step.py index d5e6aaa41..7dd7461c7 100644 --- a/mrjob/step.py +++ b/mrjob/step.py @@ -452,7 +452,7 @@ class SparkJarStep(object): :param spark_args: (optional) an array of arguments to pass to spark-submit (e.g. ``['--executor-memory', '2G']``). - *script* can also be passed as a positional argument + *jar* and *main_class* can also be passed as positional arguments """ def __init__(self, jar, main_class, **kwargs): bad_kwargs = sorted(set(kwargs) - set(_SPARK_JAR_STEP_KWARGS))