name: Code style issue about: Help us improve the Black code style title: "" labels: “T: style” assignees: ""

Describe the style change

Examples in the current Black style

def f():
    """This code should be formatted as per the current Black style"""
    pass

Desired style

def f(
    ):
    """This code can be formatted however you suggest!"""
    pass

Additional context