Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 395 Bytes

checklist.md

File metadata and controls

19 lines (16 loc) · 395 Bytes

Check Your Code Against the Following Points

  1. If the function definition line is too long, place each parameter on a new line.

Good example:

def long_function_name(
        var_one,
        var_two,
        var_three,
        var_four
) -> None:

Bad example:

def long_function_name(var_one, var_two,
                       var_three,var_four) -> None: