def cleanByClause()

in analysis/analyze.py [0:0]


def cleanByClause(by):
    by = [x for x in by if x != alt.Undefined and x is not None]
    return by