From fa3afbcac13e1aa3ae9cc2977dcb4cd882112f6f Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Mon, 16 Jan 2017 09:17:48 +0000 Subject: Use """ to replace ''' in docstring JIRA: YARDSTICK-525 For consistency, we always use """triple double quotes""" around docstrings. Change-Id: I47a20bbd8b55bc544b4841ea4006929af0a044ac Signed-off-by: chenjiankun --- yardstick/dispatcher/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yardstick/dispatcher') diff --git a/yardstick/dispatcher/base.py b/yardstick/dispatcher/base.py index 6e863cadc..09ce8d1e8 100644 --- a/yardstick/dispatcher/base.py +++ b/yardstick/dispatcher/base.py @@ -31,7 +31,7 @@ class Base(object): @staticmethod def get_cls(dispatcher_type): - '''Return class of specified type.''' + """Return class of specified type.""" for dispatcher in utils.itersubclasses(Base): if dispatcher_type == dispatcher.__dispatcher_type__: return dispatcher -- cgit 1.2.3-korg