import tkinter as tk from tkinter import messagebox

def run(self): self.root.mainloop()

tk.Button(self.root, text="Apply Hack", command=self.apply_hack).pack() tk.Button(self.root, text="Exit", command=self.root.destroy).pack()

Leave a Comment