diff --git a/Scripts/functions/common.py b/Scripts/functions/common.py index a0453a95..d20a9ea6 100644 --- a/Scripts/functions/common.py +++ b/Scripts/functions/common.py @@ -81,6 +81,10 @@ def ask(prompt='Kotaero!'): print_log(message=message) return answer +def clear_screen(): + """Simple wrapper for cls.""" + os.system('cls') + def convert_to_bytes(size): """Convert human-readable size str to bytes and return an int.""" size = str(size)