def match_methods(self, methods): if not methods: return True return any_in(self.methods, methods)
def match_instruments(self, instruments): if not instruments: return True return any_in(self.instruments, instruments)
def match_projects(self, projects): if not projects: return True return any_in(self.projects, projects)