We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f2308 commit 4b2c0e8Copy full SHA for 4b2c0e8
python/pyspark/ml/wrapper.py
@@ -45,12 +45,10 @@ class JavaWrapper(Params):
45
46
__metaclass__ = ABCMeta
47
48
- def __init__(self):
49
- super(JavaWrapper, self).__init__()
50
- #: The wrapped Java companion object. Subclasses should initialize
51
- #: it properly. The param values in the Java object should be
52
- #: synced with the Python wrapper in fit/transform/evaluate/copy.
53
- self._java_obj = None
+ #: The wrapped Java companion object. Subclasses should initialize
+ #: it properly. The param values in the Java object should be
+ #: synced with the Python wrapper in fit/transform/evaluate/copy.
+ _java_obj = None
54
55
@staticmethod
56
def _new_java_obj(java_class, *args):
0 commit comments