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