コード例 #1
0
ファイル: StyleReport.py プロジェクト: cherouvim/cicn-nrs
def exclude(args, complianceList):
    excluded = map(lambda token: token.strip(), args.exclude.split(","))
    complianceList = filter(
        lambda entry: LongBow.score(eval(args.distribution), entry.getScore())
        not in excluded, complianceList)

    return complianceList