Move clear function from audio to main

This commit is contained in:
Scoder12
2020-07-27 14:51:35 -07:00
parent d9f5b1db3f
commit 3bfde056a0
+6
View File
@@ -2,4 +2,10 @@
from .audio import Audio
from .database import db
def clear() -> None:
"Clear is used to clear the terminal."
print("\033[H\033[2J", end="", flush=True)
audio = Audio()