home · contact · privacy
New client: Proper indentation.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 28 Nov 2015 14:33:17 +0000 (15:33 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 28 Nov 2015 14:33:17 +0000 (15:33 +0100)
client_prototype.py

index 582df073688bd4a9a7f43314a30ae820cc51768a..2fc7a44aa164261dadb5a7f2d6525076f6575940 100644 (file)
@@ -86,7 +86,7 @@ def set_window_geometries():
 def draw_screen():
 
     def healthy_addch(y, x, char, attr=0):
-    """Bizarre workaround for <http://stackoverflow.com/questions/7063128/>."""
+        """Workaround for <http://stackoverflow.com/questions/7063128/>."""
         if y == screen_size[0] - 1 and x == screen_size[1] - 1:
             char_before = stdscr.inch(y, x - 1)
             stdscr.addch(y, x - 1, char, attr)