Docstrings should not start with a space

As per OpenStack Docstrings guide lines [1]:
[H401] Docstrings should not start with a space.

[1] http://docs.openstack.org/developer/hacking/#docstrings

trivialfix

Change-Id: Ifdff563f3ab7559e68c7201575045013db7383a5
This commit is contained in:
Cao Xuan Hoang
2016-09-27 13:01:12 +07:00
parent a5b485ae29
commit c8d605984f
2 changed files with 2 additions and 2 deletions

View File

@@ -110,7 +110,7 @@ class Strategy(base.APIBase):
"""The name of the goal this audit refers to"""
parameters_spec = {wtypes.text: types.jsontype}
""" Parameters spec dict"""
"""Parameters spec dict"""
def __init__(self, **kwargs):
super(Strategy, self).__init__()

View File

@@ -59,7 +59,7 @@ in any appropriate storage system (InfluxDB, OpenTSDB, MongoDB,...).
import abc
import six
""" Work in progress Helper to query metrics """
"""Work in progress Helper to query metrics"""
@six.add_metaclass(abc.ABCMeta)