From: Simon Cross Date: Thu, 15 May 2014 18:47:34 +0000 (+0200) Subject: PEP8 fixes. X-Git-Tag: 0.1~274 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=c7bb477b529380f1dae1953d604a22f729160502 PEP8 fixes. --- 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):