You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uptodate_colors= {
None: {'color':'chocolate4'},
'up-to-date': {'color':'springgreen3'},
'run': {'color':'firebrick1'},
'ignore': {'color':'grey'},
}
# ...def_execute(self, subtasks, reverse, horizontal, uptodate_status, outfile, pos_args=None):
#...if (uptodate_status):
# Add the node attributes from the dictionary: uptodate_colors[status]# Using the **dict syntax allows for multiple attributes to be set at oncestatus=self.dep_manager.get_status(task, self.tasks).statusnode_attrs.update(uptodate_colors[status])
If this looks acceptable, I can submit a pull request.
Show which tasks are
up-to-date
or not.The text was updated successfully, but these errors were encountered: