Fix missing backslashes found via pytest 3.8 (#202)

See: https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals

Changed in version 3.6: Unrecognized escape sequences produce a DeprecationWarning

Closes #202.
This commit is contained in:
Terence D. Honles
2018-09-06 13:42:46 -07:00
committed by Cristi Vîjdea
parent 0837873f55
commit f9b215deab
7 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -258,7 +258,7 @@ class SerializerInspector(FieldInspector):
return NotHandled
def get_request_parameters(self, serializer, in_):
"""Convert a DRF serializer into a list of :class:`.Parameter`\ s.
"""Convert a DRF serializer into a list of :class:`.Parameter`\\ s.
Should return :data:`.NotHandled` if this inspector does not know how to handle the given `serializer`.
@@ -372,7 +372,7 @@ class ViewInspector(BaseInspector):
)
def serializer_to_parameters(self, serializer, in_):
"""Convert a serializer to a possibly empty list of :class:`.Parameter`\ s.
"""Convert a serializer to a possibly empty list of :class:`.Parameter`\\ s.
:param serializers.BaseSerializer serializer: the ``Serializer`` instance
:param str in_: the location of the parameters, one of the `openapi.IN_*` constants