def run()

in activities.py [0:0]


    def run(self):
        data = self.load_yaml()
        self.validate_data(data)

        if self.errors:
            print("YAML validation failed with the following errors:")
            for error in self.errors:
                print(error)
            sys.exit(1)
        elif self.fix:
            self.save_fixes()