Minor indent tweak

This commit is contained in:
Alessandro Molina 2016-02-09 22:17:07 +01:00
parent 6309cfd6be
commit b2778909b9
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ from crank.dispatcher import Dispatcher
from webob.exc import HTTPNotFound
from inspect import ismethod
class ObjectDispatcher(Dispatcher):
"""
Object dispatch (also "object publishing") means that each portion of the

View File

@ -9,6 +9,7 @@ from webob.exc import HTTPMethodNotAllowed
from crank.util import get_argspec, method_matches_args
from crank.objectdispatcher import ObjectDispatcher
class RestDispatcher(ObjectDispatcher):
"""Defines a restful interface for a set of HTTP verbs.
Please see RestController for a rundown of the controller