@@ -0,0 +1,11 @@
import os
from sys import platform
class Utils:
@staticmethod
def clear_shell():
if platform == "win32":
os.system("cls")
else:
os.system("clear")
The note is not visible to the blocked user.