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
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""" """The name of the goal this audit refers to"""
parameters_spec = {wtypes.text: types.jsontype} parameters_spec = {wtypes.text: types.jsontype}
""" Parameters spec dict""" """Parameters spec dict"""
def __init__(self, **kwargs): def __init__(self, **kwargs):
super(Strategy, self).__init__() super(Strategy, self).__init__()

View File

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