MCPcopy Create free account
hub / github.com/geekcomputers/Python / decrypt_now

Method decrypt_now

encrypter_decrypter_gui.py:211–220  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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 = ""

Callers

nothing calls this directly

Calls 3

backend_workMethod · 0.95
getMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected