Browse code

fix DeprecationWarning

Fixes:
```
DeprecationWarning: invalid escape sequence \s
```

Bas Nijholt authored on 17/03/2019 09:59:40
Showing 1 changed files
... ...
@@ -20,7 +20,7 @@ def dispatch(child_functions, arg):
20 20
 
21 21
 
22 22
 class BalancingLearner(BaseLearner):
23
-    """Choose the optimal points from a set of learners.
23
+    r"""Choose the optimal points from a set of learners.
24 24
 
25 25
     Parameters
26 26
     ----------