From 81fab7051fcc40cc2775b7ebf7e06a8556e0ef07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 3 Oct 2019 00:23:02 +0200 Subject: [PATCH] Curses --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb26765..14c7dc2 100644 --- a/README.md +++ b/README.md @@ -2317,7 +2317,7 @@ def get_border(screen): from collections import namedtuple P = namedtuple('P', 'x y') height, width = screen.getmaxyx() - return P(width-1, height-1) + return P(width - 1, height - 1) if __name__ == '__main__': main() diff --git a/index.html b/index.html index c3df522..f2c2ead 100644 --- a/index.html +++ b/index.html @@ -1996,7 +1996,7 @@ pyplot.clf() # Clea from collections import namedtuple P = namedtuple('P', 'x y') height, width = screen.getmaxyx() - return P(width-1, height-1) + return P(width - 1, height - 1) if __name__ == '__main__': main()