(self)
| 170 | # ---------- Page1 Button Binding Function ---------- |
| 171 | |
| 172 | def encrypt_now(self): |
| 173 | user_text = self.user_text.get() |
| 174 | if user_text == "": |
| 175 | showerror( |
| 176 | "Nothing Found", "Please Enter Something In Entry Box To Encrypt...!" |
| 177 | ) |
| 178 | return |
| 179 | else: |
| 180 | self.decrypted_user_text = self.backend_work("Encrypt", user_text) |
| 181 | self.decrypted_text_box.insert(tk.INSERT, self.decrypted_user_text, tk.END) |
| 182 | |
| 183 | # --------------------------------------------------Binding Functions of Page1 End Here |
| 184 | # Page2 ------------------> |
nothing calls this directly
no test coverage detected