Skip to content

Commit 310b917

Browse files
Merge pull request #580 from oliver-sanders/flake8
flake8: ignore B028 rule in file
2 parents ae4fb59 + b3810f9 commit 310b917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ext/database_diagram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def group_nodes(nodes):
121121
'rank=same',
122122
'rankdir=LR'
123123
]
124-
lines.extend([f'"{x}"' for x in nodes])
124+
lines.extend([f'"{x}"' for x in nodes]) # noqa: B028
125125
return lines + ['}']
126126

127127

0 commit comments

Comments
 (0)