diff options
| author | Dolph Mathews <dolph.mathews@gmail.com> | 2013-05-24 11:36:44 -0500 |
|---|---|---|
| committer | Dolph Mathews <dolph.mathews@gmail.com> | 2013-05-24 13:29:58 -0500 |
| commit | af4e96986f6ee45e9e4ccac0b143902362a1a676 (patch) | |
| tree | 0252ac8e716b8823bd9cb09e0014e5c36683a8ae /keystone/contrib | |
| parent | b85dec3175c85cc64c4dd1661e6399a6ec706d21 (diff) | |
| download | keystone-af4e96986f6ee45e9e4ccac0b143902362a1a676.tar.gz keystone-af4e96986f6ee45e9e4ccac0b143902362a1a676.tar.xz keystone-af4e96986f6ee45e9e4ccac0b143902362a1a676.zip | |
Cleanup docstrings (flake8 H401, H402, H403, H404)
- docstring should not start with a space (flake8 H401)
- one line docstring needs punctuation (flake8 H402)
- multi line docstring end on new line (flake8 H403)
- multi line docstring should start with a summary (flake8 H404)
Change-Id: I69b414395930bda739aa01b785ac619fa8bb7d9b
Diffstat (limited to 'keystone/contrib')
| -rw-r--r-- | keystone/contrib/user_crud/core.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/keystone/contrib/user_crud/core.py b/keystone/contrib/user_crud/core.py index 0df5f9de..4ccb486b 100644 --- a/keystone/contrib/user_crud/core.py +++ b/keystone/contrib/user_crud/core.py @@ -70,11 +70,7 @@ class UserController(identity.controllers.User): class CrudExtension(wsgi.ExtensionRouter): - """ - - Provides a subset of CRUD operations for internal data types. - - """ + """Provides a subset of CRUD operations for internal data types.""" def add_routes(self, mapper): user_controller = UserController() |
