Replace if in then ... else ... with .get()

This commit is contained in:
Robin McCorkell 2017-01-23 17:11:49 +00:00
parent 6b487bbe81
commit 6292f4b3f0

View File

@ -80,8 +80,7 @@ class Taskwarrior(IntervalModule):
if self.next_task is not None:
format_values['next'] = self.next_task['description']
format_values['project'] = (self.next_task['project'] if 'project' in self.next_task
else '')
format_values['project'] = self.next_task.get('project', '')
self.output = {
'full_text': self.format.format(**format_values),