PEP8 fixes.
authorSimon Cross <hodgestar@gmail.com>
Thu, 15 May 2014 18:47:34 +0000 (20:47 +0200)
committerSimon Cross <hodgestar@gmail.com>
Thu, 15 May 2014 18:47:34 +0000 (20:47 +0200)
naja/widgets/info_area.py

index 81cd0bb1d3c228b631093af6ea356107b9942aa9..f9f2573364ff1e93edf21a0fa8a9b681066eb346 100644 (file)
@@ -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):