makewatch: remove uneeded modules

psutil is already included (line 25) and getpass is part of the stdlib.
This commit is contained in:
David Wahlstrom 2015-06-05 06:48:52 -07:00 committed by enkore
parent 8b8a3db25c
commit b09e213e69
2 changed files with 2 additions and 3 deletions

View File

@ -31,8 +31,7 @@ MOCK_MODULES = [
"notmuch", "notmuch",
"requests", "requests",
"bs4", "bs4",
"novaclient.v2", "novaclient.v2"
"psutil", "getpass"
] ]
for mod_name in MOCK_MODULES: for mod_name in MOCK_MODULES:

View File

@ -13,7 +13,7 @@ class MakeWatch(IntervalModule):
("name", "Listen for a job other than 'make' jobs"), ("name", "Listen for a job other than 'make' jobs"),
("running_color", "Text color while the job is running"), ("running_color", "Text color while the job is running"),
("idle_color", "Text color while the job is not running"), ("idle_color", "Text color while the job is not running"),
"format", "idle_format" "format",
) )
running_color = "#FF0000" # red running_color = "#FF0000" # red
idle_color = "#00FF00" # green idle_color = "#00FF00" # green