From 01500be7fb8d4fdf6d072a1eacf4df87abe86c8c Mon Sep 17 00:00:00 2001 From: Navid Pustchi Date: Wed, 4 May 2016 19:14:01 +0000 Subject: Fixing D105 PEP257 Currently tox ignores D105. D105: Missing docstring in magic method. This change removes it and make keystoneclient docstring compliant with it. Change-Id: I34dfc164891880425f542f8f8aa3426ec8640c96 --- keystoneclient/v2_0/users.py | 1 + 1 file changed, 1 insertion(+) (limited to 'keystoneclient/v2_0/users.py') diff --git a/keystoneclient/v2_0/users.py b/keystoneclient/v2_0/users.py index 6f42cf4..b791166 100644 --- a/keystoneclient/v2_0/users.py +++ b/keystoneclient/v2_0/users.py @@ -23,6 +23,7 @@ class User(base.Resource): """Represents a Keystone user.""" def __repr__(self): + """Return string representation of user resource information.""" return "" % self._info def delete(self): -- cgit v1.2.1