fix lint issue

This commit is contained in:
Yun Xu 2019-05-09 21:14:27 -07:00
parent d4ef151cc4
commit bd89c7f269

View File

@ -556,7 +556,8 @@ class Sanic:
existing route can be removed from the :class:`Sanic` object existing route can be removed from the :class:`Sanic` object
.. warning:: .. warning::
remove_route is deprecated in v19.06 and will be removed from future versions. remove_route is deprecated in v19.06 and will be removed
from future versions.
:param uri: URL Path to be removed from the app :param uri: URL Path to be removed from the app
:param clean_cache: Instruct sanic if it needs to clean up the LRU :param clean_cache: Instruct sanic if it needs to clean up the LRU
@ -565,7 +566,8 @@ class Sanic:
:return: None :return: None
""" """
warnings.warn( warnings.warn(
"remove_route is deprecated and will be removed from future versions.", "remove_route is deprecated and will be removed "
"from future versions.",
DeprecationWarning, DeprecationWarning,
stacklevel=2, stacklevel=2,
) )