(self)
| 209 | # ---------- Page1 Button Binding Function ---------- |
| 210 | |
| 211 | def decrypt_now(self): |
| 212 | user_text = self.user_text2.get() |
| 213 | if user_text == "": |
| 214 | showerror( |
| 215 | "Nothing Found", "Please Enter Something In Entry Box To Encrypt...!" |
| 216 | ) |
| 217 | return |
| 218 | else: |
| 219 | self.real_text = self.backend_work("Decrypt", user_text) |
| 220 | self.text_box.insert(tk.INSERT, self.real_text, tk.END) |
| 221 | |
| 222 | def backend_work(self, todo, text_coming): |
| 223 | text_to_return = "" |
nothing calls this directly
no test coverage detected