fix linter issues
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
This commit is contained in:
parent
939b5ea095
commit
e3dfce88ff
|
@ -373,8 +373,8 @@ class Blueprint:
|
||||||
|
|
||||||
:param uri: URL to be tagged to **GET** method of *HTTP*
|
:param uri: URL to be tagged to **GET** method of *HTTP*
|
||||||
:param host: Host IP or FQDN for the service to use
|
:param host: Host IP or FQDN for the service to use
|
||||||
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check if the request
|
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check
|
||||||
URLs need to terminate with a */*
|
if the request URLs need to terminate with a */*
|
||||||
:param version: API Version
|
:param version: API Version
|
||||||
:param name: Unique name that can be used to identify the Route
|
:param name: Unique name that can be used to identify the Route
|
||||||
:return: Object decorated with :func:`route` method
|
:return: Object decorated with :func:`route` method
|
||||||
|
@ -402,8 +402,8 @@ class Blueprint:
|
||||||
|
|
||||||
:param uri: URL to be tagged to **POST** method of *HTTP*
|
:param uri: URL to be tagged to **POST** method of *HTTP*
|
||||||
:param host: Host IP or FQDN for the service to use
|
:param host: Host IP or FQDN for the service to use
|
||||||
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check if the request
|
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check
|
||||||
URLs need to terminate with a */*
|
if the request URLs need to terminate with a */*
|
||||||
:param version: API Version
|
:param version: API Version
|
||||||
:param name: Unique name that can be used to identify the Route
|
:param name: Unique name that can be used to identify the Route
|
||||||
:return: Object decorated with :func:`route` method
|
:return: Object decorated with :func:`route` method
|
||||||
|
@ -432,8 +432,8 @@ class Blueprint:
|
||||||
|
|
||||||
:param uri: URL to be tagged to **PUT** method of *HTTP*
|
:param uri: URL to be tagged to **PUT** method of *HTTP*
|
||||||
:param host: Host IP or FQDN for the service to use
|
:param host: Host IP or FQDN for the service to use
|
||||||
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check if the request
|
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check
|
||||||
URLs need to terminate with a */*
|
if the request URLs need to terminate with a */*
|
||||||
:param version: API Version
|
:param version: API Version
|
||||||
:param name: Unique name that can be used to identify the Route
|
:param name: Unique name that can be used to identify the Route
|
||||||
:return: Object decorated with :func:`route` method
|
:return: Object decorated with :func:`route` method
|
||||||
|
@ -456,8 +456,8 @@ class Blueprint:
|
||||||
|
|
||||||
:param uri: URL to be tagged to **HEAD** method of *HTTP*
|
:param uri: URL to be tagged to **HEAD** method of *HTTP*
|
||||||
:param host: Host IP or FQDN for the service to use
|
:param host: Host IP or FQDN for the service to use
|
||||||
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check if the request
|
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check
|
||||||
URLs need to terminate with a */*
|
if the request URLs need to terminate with a */*
|
||||||
:param version: API Version
|
:param version: API Version
|
||||||
:param name: Unique name that can be used to identify the Route
|
:param name: Unique name that can be used to identify the Route
|
||||||
:return: Object decorated with :func:`route` method
|
:return: Object decorated with :func:`route` method
|
||||||
|
@ -479,8 +479,8 @@ class Blueprint:
|
||||||
|
|
||||||
:param uri: URL to be tagged to **OPTIONS** method of *HTTP*
|
:param uri: URL to be tagged to **OPTIONS** method of *HTTP*
|
||||||
:param host: Host IP or FQDN for the service to use
|
:param host: Host IP or FQDN for the service to use
|
||||||
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check if the request
|
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check
|
||||||
URLs need to terminate with a */*
|
if the request URLs need to terminate with a */*
|
||||||
:param version: API Version
|
:param version: API Version
|
||||||
:param name: Unique name that can be used to identify the Route
|
:param name: Unique name that can be used to identify the Route
|
||||||
:return: Object decorated with :func:`route` method
|
:return: Object decorated with :func:`route` method
|
||||||
|
@ -508,8 +508,8 @@ class Blueprint:
|
||||||
|
|
||||||
:param uri: URL to be tagged to **PATCH** method of *HTTP*
|
:param uri: URL to be tagged to **PATCH** method of *HTTP*
|
||||||
:param host: Host IP or FQDN for the service to use
|
:param host: Host IP or FQDN for the service to use
|
||||||
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check if the request
|
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check
|
||||||
URLs need to terminate with a */*
|
if the request URLs need to terminate with a */*
|
||||||
:param version: API Version
|
:param version: API Version
|
||||||
:param name: Unique name that can be used to identify the Route
|
:param name: Unique name that can be used to identify the Route
|
||||||
:return: Object decorated with :func:`route` method
|
:return: Object decorated with :func:`route` method
|
||||||
|
@ -532,8 +532,8 @@ class Blueprint:
|
||||||
|
|
||||||
:param uri: URL to be tagged to **DELETE** method of *HTTP*
|
:param uri: URL to be tagged to **DELETE** method of *HTTP*
|
||||||
:param host: Host IP or FQDN for the service to use
|
:param host: Host IP or FQDN for the service to use
|
||||||
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check if the request
|
:param strict_slashes: Instruct :class:`sanic.app.Sanic` to check
|
||||||
URLs need to terminate with a */*
|
if the request URLs need to terminate with a */*
|
||||||
:param version: API Version
|
:param version: API Version
|
||||||
:param name: Unique name that can be used to identify the Route
|
:param name: Unique name that can be used to identify the Route
|
||||||
:return: Object decorated with :func:`route` method
|
:return: Object decorated with :func:`route` method
|
||||||
|
|
|
@ -26,10 +26,11 @@ class ErrorHandler:
|
||||||
|
|
||||||
This error handling framework is built into the core that can be extended
|
This error handling framework is built into the core that can be extended
|
||||||
by the developers to perform a wide range of tasks from recording the error
|
by the developers to perform a wide range of tasks from recording the error
|
||||||
stats to reporting them to an external service that can be used for realtime
|
stats to reporting them to an external service that can be used for
|
||||||
alerting system.
|
realtime alerting system.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
handlers = None
|
handlers = None
|
||||||
cached_handlers = None
|
cached_handlers = None
|
||||||
_missing = object()
|
_missing = object()
|
||||||
|
@ -75,7 +76,8 @@ class ErrorHandler:
|
||||||
:param exception: Type of exception that need to be handled
|
:param exception: Type of exception that need to be handled
|
||||||
:param handler: Reference to the method that will handle the exception
|
:param handler: Reference to the method that will handle the exception
|
||||||
|
|
||||||
:type exception: :class:`sanic.exceptions.SanicException` or :class:`Exception`
|
:type exception: :class:`sanic.exceptions.SanicException` or
|
||||||
|
:class:`Exception`
|
||||||
:type handler: ``function``
|
:type handler: ``function``
|
||||||
|
|
||||||
:return: None
|
:return: None
|
||||||
|
@ -91,7 +93,8 @@ class ErrorHandler:
|
||||||
|
|
||||||
:param exception: Type of exception
|
:param exception: Type of exception
|
||||||
|
|
||||||
:type exception: :class:`sanic.exceptions.SanicException` or :class:`Exception`
|
:type exception: :class:`sanic.exceptions.SanicException` or
|
||||||
|
:class:`Exception`
|
||||||
|
|
||||||
:return: Registered function if found ``None`` otherwise
|
:return: Registered function if found ``None`` otherwise
|
||||||
"""
|
"""
|
||||||
|
@ -113,7 +116,8 @@ class ErrorHandler:
|
||||||
:param exception: Exception to handle
|
:param exception: Exception to handle
|
||||||
|
|
||||||
:type request: :class:`sanic.request.Request`
|
:type request: :class:`sanic.request.Request`
|
||||||
:type exception: :class:`sanic.exceptions.SanicException` or :class:`Exception`
|
:type exception: :class:`sanic.exceptions.SanicException` or
|
||||||
|
:class:`Exception`
|
||||||
|
|
||||||
:return: Wrap the return value obtained from :func:`default`
|
:return: Wrap the return value obtained from :func:`default`
|
||||||
or registered handler for that type of exception.
|
or registered handler for that type of exception.
|
||||||
|
@ -158,7 +162,8 @@ class ErrorHandler:
|
||||||
:param exception: Exception object
|
:param exception: Exception object
|
||||||
|
|
||||||
:type request: :class:`sanic.request.Request`
|
:type request: :class:`sanic.request.Request`
|
||||||
:type exception: :class:`sanic.exceptions.SanicException` or :class:`Exception`
|
:type exception: :class:`sanic.exceptions.SanicException` or
|
||||||
|
:class:`Exception`
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
self.log(format_exc())
|
self.log(format_exc())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user