black/tests/data/cases/module_docstring_1.py
2024-01-24 17:06:14 -08:00

26 lines
329 B
Python

"""Single line module-level docstring should be followed by single newline."""
a = 1
"""I'm just a string so should be followed by 2 newlines."""
b = 2
# output
"""Single line module-level docstring should be followed by single newline."""
a = 1
"""I'm just a string so should be followed by 2 newlines."""
b = 2