7 lines
122 B
Python
7 lines
122 B
Python
from .Application import Application
|
|
|
|
class ConsoleApplication (Application):
|
|
|
|
def clear(self):
|
|
print("\033c", end='')
|