Sphinx warning

This commit is contained in:
enkore 2013-10-14 18:51:52 +02:00
parent 57bc764234
commit 0d93f165b3
2 changed files with 2 additions and 10 deletions

View File

@ -9,14 +9,6 @@ core Package
:undoc-members: :undoc-members:
:show-inheritance: :show-inheritance:
:mod:`color` Module
-------------------
.. automodule:: i3pystatus.core.color
:members:
:undoc-members:
:show-inheritance:
:mod:`config` Module :mod:`config` Module
-------------------- --------------------

View File

@ -12,9 +12,9 @@ class Status:
""" """
The main class used for registering modules and managing I/O The main class used for registering modules and managing I/O
:param standalone: Wether i3pystatus should read i3status-compatible input from :param:`input_stream` :param standalone: Wether i3pystatus should read i3status-compatible input from `input_stream`
:param interval: Update interval in seconds :param interval: Update interval in seconds
:param input_stream: A file-like object that provides the input stream, if :param:`standalone` is False. :param input_stream: A file-like object that provides the input stream, if `standalone` is False.
""" """
def __init__(self, standalone=False, interval=1, input_stream=sys.stdin): def __init__(self, standalone=False, interval=1, input_stream=sys.stdin):