black/.github/ISSUE_TEMPLATE/style_issue.md

646 B

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

Describe the style change

Examples in the current Black style

def f():
    "Make sure this code is blackened"""
    pass

Desired style

def f(
    ):
    pass

Additional context