From 3b90dc2e3ea201fc213b632257ab348154e51510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 17 Dec 2021 17:07:20 -0500 Subject: [PATCH] Update description successfully to remove shifted time values Fixes this error: ValueError: Series.replace cannot use dict-like to_replace and non-None value --- pomodoro_to_harvest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pomodoro_to_harvest.py b/pomodoro_to_harvest.py index 1dd322b..3b753c9 100644 --- a/pomodoro_to_harvest.py +++ b/pomodoro_to_harvest.py @@ -107,7 +107,8 @@ timelog['tmp_daysdelta'] = timelog['tmp_daysdelta'].fillna(0) timelog['date'] = timelog['date'] + pd.to_timedelta(timelog['tmp_daysdelta'], unit='D') timelog.tmp_timeshift = '(' + timelog.tmp_timeshift + ')' # timelog['description'] = (np.where(timelog['tmp_daysdelta'] > 0.0, timelog['description'].str.replace(timelog['tmp_timeshift'], ""), timelog['description'])) -timelog.description.replace(regex=r'(?i)' + timelog.tmp_timeshift, value="") +# timelog.description.replace(regex=r'(?i)' + timelog.tmp_timeshift, value="") +timelog['description'] = timelog.apply(lambda x: x['description'].replace(x['tmp_timeshift']), axis=1) # If a multiplier has been provided (an asterisk and an integer at the end of a # task), then multiply the time by it and remove it from the description.