Skip to content

Commit

Permalink
Update solution.py
Browse files Browse the repository at this point in the history
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/solution.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.
  • Loading branch information
ikostan committed Dec 19, 2024
1 parent 89950bc commit 360ee7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kyu_6/format_string_of_names/solution.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Solution for -> Format a string of names like \'Bart, Lisa & Maggie\'.
Solution for -> Format a string of names like 'Bart, Lisa & Maggie'.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
Expand Down

0 comments on commit 360ee7e

Please sign in to comment.