
Co-authored-by: jpy-git <josephyoung.jpy@gmail.com> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
27 lines
348 B
Python
27 lines
348 B
Python
# flags: --preview
|
|
"""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
|