coding style

This commit is contained in:
Andrew Hamilton 2015-12-15 00:11:28 +00:00
parent 3be340dc67
commit ec2383a529

4
vigil
View file

@ -40,7 +40,6 @@ Keys:
import asyncio import asyncio
import collections import collections
import curses
import functools import functools
import gc import gc
import gzip import gzip
@ -842,8 +841,7 @@ class Screen:
({"K", "end"}, listing_right), ({"o"}, toggle_sort), ({"K", "end"}, listing_right), ({"o"}, toggle_sort),
({"n"}, move_to_next_issue), ({"N"}, move_to_next_issue_of_tool), ({"n"}, move_to_next_issue), ({"N"}, move_to_next_issue_of_tool),
({"e"}, edit_file), ({"s"}, toggle_status_style), ({"e"}, edit_file), ({"s"}, toggle_status_style),
({"w"}, toggle_watch_filesystem), ({"q"}, quit_), ({"w"}, toggle_watch_filesystem), ({"q"}, quit_)]
({curses.KEY_MOUSE}, on_mouse_event)]
class Runner: class Runner: