Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 734 Bytes

File metadata and controls

38 lines (28 loc) · 734 Bytes
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