def save_fixes()

in activities.py [0:0]


    def save_fixes(self):
        if self.modified_data:
            with open(self.file_path, 'w') as file:
                self.yaml.dump(self.modified_data, file)
            print(f"Fixes applied and saved to {self.file_path}")