|
|
|
|
|
by OJFord
3431 days ago
|
|
The same thing basically, sibling comment has it. `):` always either on the first (and only) line or the last line, which ensures it either over-runs the function body indention level, or falls short: def a():
pass
def b(
):
pass
|
|