makewatch: remove uneeded modules
psutil is already included (line 25) and getpass is part of the stdlib.
This commit is contained in:
parent
8b8a3db25c
commit
b09e213e69
@ -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:
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user