Fixed D301 Use r""" if any backslashes in a docstring

This commit is contained in:
Salvador E. Tropea 2022-02-17 18:48:50 -03:00
parent c3b229ba0c
commit 1731e889b1
1 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ def load(filelike, **kwds):
def loads(string, **kwds):
"""
r"""
Load object from S-expression `string`.
:arg string: String containing an S-expression.
@ -698,7 +698,7 @@ class Parser(object):
def parse(string, **kwds):
"""
r"""
Parse s-expression.
>>> parse('(a b)')