From a3b3778d77048d08d9bf5f63afd4cdf7a666c857 Mon Sep 17 00:00:00 2001 From: mvieitesdiaz Date: Tue, 14 Jul 2020 12:40:42 +0200 Subject: [PATCH] testwebhook --- solution.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/solution.py b/solution.py index cbf5977..d49e0a9 100755 --- a/solution.py +++ b/solution.py @@ -5,8 +5,7 @@ import pandas as pd def predict(data): - """ get two colums from `df` and returns the predicted ouput as a column (pd.Series) - """ + """ get two colums from `df` and returns the predicted ouput as a column (pd.Series)""" result = data['col1'] + data['col2'] return result