Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/black/comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def _generate_ignored_nodes_from_fmt_skip(
if not comments or comment.value != comments[0].value:
return

if not prev_sibling and parent:
if not prev_sibling and parent and parent.type != syms.suite:
prev_sibling = parent.prev_sibling

if prev_sibling is not None:
Expand Down
Loading