(self)
| 314 | self.info() |
| 315 | |
| 316 | def isitdown(self): |
| 317 | self.clear_scr() |
| 318 | os.system("echo \"Check Website Is Online or Not \"|boxes -d boy | lolcat") |
| 319 | choice = input("[1]Open [99]Back >> ") |
| 320 | |
| 321 | self.check_input(choice, self.isitdown, ['1', '99']) |
| 322 | |
| 323 | if choice == "1": |
| 324 | webbrowser.open_new_tab("https://www.isitdownrightnow.com/") |
| 325 | self.isitdown() |
| 326 | |
| 327 | if choice == "99": |
| 328 | self.info() |
| 329 | |
| 330 | def infogaemail(self): |
| 331 | self.clear_scr() |
nothing calls this directly
no test coverage detected