diff --git a/2-development/dev.py b/2-development/dev.py index e62b0f5..4835263 100644 --- a/2-development/dev.py +++ b/2-development/dev.py @@ -129,7 +129,7 @@ def limpiar_consola(): # WINDOW TITLE def window_title(title): if sys.platform.startswith('win32'): # En Windows - On Windows - ctypes.windll.kernel32.SetConsoleTitleW(title) + ctypes.windll.kernel32.SetConsoleTitleW(title) # type: ignore elif sys.platform.startswith('linux') or sys.platform.startswith('darwin'): # For Linux sys.stdout.write(f"\x1b]2;{title}\x07")