Update docstrings (#7374)

* Update docstrings

* Update docstrings

* Update docstrings

* Update docstrings

* Update docstrings

* Update docstrings

* Update docstring

* Update docstrings

* Update docstrings

* Fix lint issues

* Update docstrings

* Revert changes in dict
This commit is contained in:
Fabian Affolter 2017-05-02 18:18:47 +02:00 committed by Paulus Schoutsen
parent 0e08925259
commit a4f1f6e724
340 changed files with 1533 additions and 1708 deletions

View file

@ -1,8 +1,7 @@
"""
Support for EBox.
Get data from 'My Usage Page' page:
https://client.ebox.ca/myusage
Get data from 'My Usage Page' page: https://client.ebox.ca/myusage
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.ebox/
@ -25,12 +24,12 @@ REQUIREMENTS = ['pyebox==0.1.0']
_LOGGER = logging.getLogger(__name__)
GIGABITS = "Gb" # type: str
PRICE = "CAD" # type: str
DAYS = "days" # type: str
PERCENT = "%" # type: str
GIGABITS = 'Gb' # type: str
PRICE = 'CAD' # type: str
DAYS = 'days' # type: str
PERCENT = '%' # type: str
DEFAULT_NAME = "EBox"
DEFAULT_NAME = 'EBox'
REQUESTS_TIMEOUT = 15
MIN_TIME_BETWEEN_UPDATES = timedelta(minutes=5)