From c7bb477b529380f1dae1953d604a22f729160502 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Thu, 15 May 2014 20:47:34 +0200 Subject: [PATCH] PEP8 fixes. --- naja/widgets/info_area.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 81cd0bb..f9f2573 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -17,17 +17,17 @@ from naja.widgets.text import TextBoxWidget, TextWidget HINTS = { - ACT: "Choose an action using the Up/Down keys.\n" - "Press Return to execute the action.", - EXAMINE: "Select a card to examine using the arrow keys." - } + ACT: ("Choose an action using the Up/Down keys.\n" + "Press Return to execute the action."), + EXAMINE: "Select a card to examine using the arrow keys.", +} HINT_LEGAL_MOVE = "\nPress Return to move to this card." TITLES = { - ACT: "Choose an Action", - EXAMINE: "Select a Card", - } + ACT: "Choose an Action", + EXAMINE: "Select a Card", +} class InfoAreaWidget(Widget): -- 2.34.1