We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c19085 commit 25247a8Copy full SHA for 25247a8
physionet/validate/models.py
@@ -164,7 +164,13 @@ def summary(self) -> str:
164
"=" * 50,
165
])
166
167
+ first_category = True
168
for category, result in self.check_results.items():
169
+ # Add blank line before each category (except first)
170
+ if not first_category:
171
+ lines.append("")
172
+ first_category = False
173
+
174
# Only show ✗ for errors, ✓ for pass or warnings-only
175
status_icon = "✗" if result.error_count > 0 else "✓"
176
issue_summary = ""
0 commit comments