Skip to content

Commit

Permalink
fix curses keyword arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
xi committed Nov 6, 2023
1 parent b1a9526 commit db1031e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -815,10 +815,10 @@ def run(self):


def main():
screen.keypad(flag=True)
screen.keypad(True) # noqa: FBT003
curses.cbreak()
curses.noecho()
curses.meta(flag=True)
curses.meta(True) # noqa: FBT003
curses.curs_set(0)

signal.signal(signal.SIGWINCH, resize)
Expand Down

0 comments on commit db1031e

Please sign in to comment.