Skip to content
Snippets Groups Projects
Commit 2230ecdd authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

[black]

parent dfc8e92a
No related branches found
No related tags found
1 merge request!63Implemented a mechanism in the Checkpoint wrapper that asserts if data was...
Pipeline #50459 passed
......@@ -141,7 +141,8 @@ class SampleWrapper(BaseWrapper, TransformerMixin):
if isinstance(samples[0], SampleSet):
return [
SampleSet(
self._samples_transform(sset.samples, method_name), parent=sset,
self._samples_transform(sset.samples, method_name),
parent=sset,
)
for sset in samples
]
......@@ -437,7 +438,11 @@ class DaskWrapper(BaseWrapper, TransformerMixin):
"""
def __init__(
self, estimator, fit_tag=None, transform_tag=None, **kwargs,
self,
estimator,
fit_tag=None,
transform_tag=None,
**kwargs,
):
super().__init__(**kwargs)
self.estimator = estimator
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment