black/.github/ISSUE_TEMPLATE/style_issue.md
Hugo van Kemenade ea03b6c5e1
Issue template: Add Python code formatting (#1485)
Makes things a bit more readable
2020-06-15 09:15:11 -07:00

592 B

name about title labels assignees
Style issue Help us improve the Black style design

Describe the style change A clear and concise description of how the style can be improved.

Examples in the current Black style Think of some short code snippets that show how the current Black style is not great:

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

Desired style How do you think Black should format the above snippets:

def f(
    ):
    pass

Additional context Add any other context about the problem here.