
Python does not consider f-strings to be docstrings, so we probably shouldn't be formatting them as such Fixes #4018 Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
21 lines
234 B
Python
21 lines
234 B
Python
def foo(e):
|
|
f""" {'.'.join(e)}"""
|
|
|
|
def bar(e):
|
|
f"{'.'.join(e)}"
|
|
|
|
def baz(e):
|
|
F""" {'.'.join(e)}"""
|
|
|
|
# output
|
|
def foo(e):
|
|
f""" {'.'.join(e)}"""
|
|
|
|
|
|
def bar(e):
|
|
f"{'.'.join(e)}"
|
|
|
|
|
|
def baz(e):
|
|
f""" {'.'.join(e)}"""
|