diff options
| author | Ultrabug <ultrabug@gentoo.org> | 2015-03-31 13:14:25 +0200 |
|---|---|---|
| committer | Ultrabug <ultrabug@gentoo.org> | 2015-03-31 13:14:25 +0200 |
| commit | ada99c0af5665828abc725923bf2f104c577c852 (patch) | |
| tree | a4e58a0d9a5bec4612efe98bf068730a45c32ef7 /py3status/modules/spaceapi.py | |
| parent | cdfec19502d0415f92d85ffa48e6bec495ccb644 (diff) | |
move config parameters on every module docstring, overall QA
Diffstat (limited to 'py3status/modules/spaceapi.py')
| -rw-r--r-- | py3status/modules/spaceapi.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/py3status/modules/spaceapi.py b/py3status/modules/spaceapi.py index c4eac58..ac70b2f 100644 --- a/py3status/modules/spaceapi.py +++ b/py3status/modules/spaceapi.py @@ -2,6 +2,14 @@ """ Display if your favorite hackerspace is open or not. +Configuration Parameters: + - cache_timeout: Set timeout between calls in seconds + - closed_color: color if space is closed + - closed_text: text if space is closed, strftime parameters will be translated + - open_color: color if space is open + - open_text: text if space is open, strftime parmeters will be translated + - url: URL to SpaceAPI json file of your space + @author timmszigat @license WTFPL <http://www.wtfpl.net/txt/copying/> """ @@ -15,15 +23,7 @@ import urllib.request class Py3status: """ - Configuration Parameters: - - cache_timeout: Set timeout between calls in seconds - - closed_color: color if space is closed - - closed_text: text if space is closed, strftime parameters will be translated - - open_color: color if space is open - - open_text: text if space is open, strftime parmeters will be translated - - url: URL to SpaceAPI json file of your space """ - # available configuration parameters cache_timeout = 60 closed_color = None |
