def removefromScoreTable(feed): """ Functtion to remove the Scores of all the Items in a particular feed """ itemsList = fm.listItems(feed) for item in itemsList: removeItemScores(item)
def removefromScoreTable(feed): """ Function to remove the Scores of all the Items in a particular feed. This will remove all the ScoreItem objects of the Items that belong to a particular feed. """ itemsList = fm.listItems(feed) for item in itemsList: removeItemScores(item)