Skip to content

Commit dba3c26

Browse files
authored
Fix bug introduced in #3564. (#3615)
1 parent d7a28dd commit dba3c26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/black/lines.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ def _maybe_empty_lines(self, current_line: Line) -> Tuple[int, int]:
598598
before = 1
599599
elif (
600600
not depth
601-
and self.previous_defs[-1]
601+
and self.previous_defs[-1].depth
602602
and current_line.leaves[-1].type == token.COLON
603603
and (
604604
current_line.leaves[0].value

0 commit comments

Comments
 (0)