From 92dab4786fa368130d56021ef48097e169dd7435 Mon Sep 17 00:00:00 2001 From: chkoar Date: Mon, 3 Feb 2020 13:45:07 +0200 Subject: [PATCH] Make pep8 happy! --- imblearn/utils/_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imblearn/utils/_validation.py b/imblearn/utils/_validation.py index 0f9f2f9c3..0d02ea28b 100644 --- a/imblearn/utils/_validation.py +++ b/imblearn/utils/_validation.py @@ -49,7 +49,7 @@ def _gets_props(self, array): def _transfrom(self, array, props): type_ = props["type"].lower() - msg="Could not convert to {}".format(type_) + msg = "Could not convert to {}".format(type_) if type_ == "list": ret = array.tolist() elif type_ == "dataframe":