Clear terminal screen
(self)
| 116 | self.tkinter_available = False |
| 117 | |
| 118 | def clear_screen(self): |
| 119 | """Clear terminal screen""" |
| 120 | os.system("cls" if os.name == "nt" else "clear") |
| 121 | |
| 122 | def print_logo(self): |
| 123 | """Print enhanced ASCII logo for DeepCode CLI""" |
no outgoing calls
no test coverage detected