diff --git a/basics/with_chgat.py b/basics/with_chgat.py index 12ade54..8b16b07 100644 --- a/basics/with_chgat.py +++ b/basics/with_chgat.py @@ -5,8 +5,7 @@ import curses def with_chgat(stdscr): curses.init_pair(1, curses.COLOR_CYAN, curses.COLOR_BLACK) stdscr.addstr("A Big string which i didn't care to type fully ", - curses.color_pair(1)) -# stdscr.chgat(0, 0, -1, curses.A_BLINK) + curses.color_pair(1) | curses.A_BLINK) stdscr.refresh() stdscr.getch()