Add todo so we might catch next one before import

This commit is contained in:
benjamin melançon 2022-04-11 15:39:10 -04:00
parent 854a0a1fc6
commit 105f2cd185

View file

@ -228,6 +228,8 @@ for preferred, alternatives in subproject_names.items():
alternatives.append(preferred) alternatives.append(preferred)
alternatives = [item.lower() for item in alternatives] alternatives = [item.lower() for item in alternatives]
timelog.loc[timelog.subproject.str.lower().isin(alternatives), "subproject"] = preferred timelog.loc[timelog.subproject.str.lower().isin(alternatives), "subproject"] = preferred
# TODO flag when task/subproject names are not known, because otherwise they
# get force-created on import.
# Condense duplicate entries by date, summing the minutes spent, and listing # Condense duplicate entries by date, summing the minutes spent, and listing
# the first started and last recorded times for each task. # the first started and last recorded times for each task.