summaryrefslogtreecommitdiff
path: root/keystoneclient/v2_0/users.py
diff options
context:
space:
mode:
authorNavid Pustchi <npustchi@gmail.com>2016-05-04 19:14:01 +0000
committerNavid Pustchi <npustchi@gmail.com>2016-05-04 19:47:14 +0000
commit01500be7fb8d4fdf6d072a1eacf4df87abe86c8c (patch)
tree0dc74328f8e8104acdc60e72e81b44e985f4ed0f /keystoneclient/v2_0/users.py
parent4c180e691fe1deed3b253016c28e8f6987436074 (diff)
downloadpython-keystoneclient-01500be7fb8d4fdf6d072a1eacf4df87abe86c8c.tar.gz
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
Diffstat (limited to 'keystoneclient/v2_0/users.py')
-rw-r--r--keystoneclient/v2_0/users.py1
1 files changed, 1 insertions, 0 deletions
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 "<User %s>" % self._info
def delete(self):