from base.module import Module class Audit(Module): """ Perform various code audits on a specified Pkg """ tools = ['flawfinder', 'rats'] def __init__(self, pkg): """ @param pkg: a Pkg instance """ __all__ = ['Audit']