From 8d1fdcd143b060974375031ccef24754b34e7d5b Mon Sep 17 00:00:00 2001 From: Huaxin Gao Date: Mon, 13 Jan 2020 20:25:20 -0800 Subject: [PATCH] remove version info for getSeed --- python/pyspark/ml/classification.py | 1 - python/pyspark/ml/regression.py | 1 - 2 files changed, 2 deletions(-) diff --git a/python/pyspark/ml/classification.py b/python/pyspark/ml/classification.py index fa8f063820cb9..58044556b307d 100644 --- a/python/pyspark/ml/classification.py +++ b/python/pyspark/ml/classification.py @@ -1311,7 +1311,6 @@ def setCheckpointInterval(self, value): """ return self._set(checkpointInterval=value) - @since("1.6.0") def setSeed(self, value): """ Sets the value of :py:attr:`seed`. diff --git a/python/pyspark/ml/regression.py b/python/pyspark/ml/regression.py index cea9d108ccd24..d5a8dd5e8457a 100644 --- a/python/pyspark/ml/regression.py +++ b/python/pyspark/ml/regression.py @@ -930,7 +930,6 @@ def setCheckpointInterval(self, value): """ return self._set(checkpointInterval=value) - @since("1.6.0") def setSeed(self, value): """ Sets the value of :py:attr:`seed`.