From 52ba64dfa725ec86ecab900344552e9804278aad Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 05:51:12 -0800 Subject: [PATCH] Update test_namelist.py kyu_6/format_string_of_names/test_namelist.py:1 at module level: D301: Use r""" if any backslashes in a docstring Use r"""raw triple double quotes""" if you use any backslashes (\) in your docstrings. Exceptions are backslashes for line-continuation and unicode escape sequences \N... and \u... These are considered intended unescaped content in docstrings. --- kyu_6/format_string_of_names/test_namelist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_6/format_string_of_names/test_namelist.py b/kyu_6/format_string_of_names/test_namelist.py index 5ebeb2495ec..8c92df26734 100644 --- a/kyu_6/format_string_of_names/test_namelist.py +++ b/kyu_6/format_string_of_names/test_namelist.py @@ -1,5 +1,5 @@ """ -Test for -> Format a string of names like \'Bart, Lisa & Maggie\'. +Test for -> Format a string of names like 'Bart, Lisa & Maggie'. Created by Egor Kostan. GitHub: https://github.com/ikostan