Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
crflynn committed Oct 2, 2020
1 parent 07b024a commit 9c55e99
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,14 +504,10 @@ def _instrument_class_method(
)
else:
setattr(
estimator,
"_original_" + method_name,
(estimator, class_attr),
estimator, "_original_" + method_name, (estimator, class_attr),
)
setattr(
estimator,
method_name,
self.spanner(class_attr, estimator),
estimator, method_name, self.spanner(class_attr, estimator),
)

def _function_wrapper(self, function):
Expand Down

0 comments on commit 9c55e99

Please sign in to comment.