Merge "Docstrings should not start with a space"

This commit is contained in:
Jenkins 2016-10-03 06:33:58 +00:00 committed by Gerrit Code Review
commit 2642627da6
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)