Changed file system

This commit is contained in:
BarsTiger
2022-01-23 22:15:06 +02:00
parent 89bef345cb
commit 79e2d7266f
10 changed files with 12 additions and 11 deletions

5
modules/console.py Normal file
View File

@@ -0,0 +1,5 @@
import os
def cls():
os.system('cls' if os.name == 'nt' else 'clear')