diff --git a/bouquin/markdown_highlighter.py b/bouquin/markdown_highlighter.py index 7489953..81b08b4 100644 --- a/bouquin/markdown_highlighter.py +++ b/bouquin/markdown_highlighter.py @@ -356,7 +356,6 @@ class MarkdownHighlighter(QSyntaxHighlighter): for m in re.finditer(r"[☐☑]", text): self._overlay_range(m.start(), 1, self.checkbox_format) - # (If you add Unicode bullets later…) for m in re.finditer(r"•", text): self._overlay_range(m.start(), 1, self.bullet_format) diff --git a/bouquin/statistics_dialog.py b/bouquin/statistics_dialog.py index d0c9c5a..f71c447 100644 --- a/bouquin/statistics_dialog.py +++ b/bouquin/statistics_dialog.py @@ -151,7 +151,7 @@ class DateHeatmap(QWidget): fm = painter.fontMetrics() # --- weekday labels on left ------------------------------------- - # Python's weekday(): Monday=0 ... Sunday=6, same as your rows. + # Python's weekday(): Monday=0 ... Sunday=6 weekday_labels = ["M", "T", "W", "T", "F", "S", "S"] for dow in range(7):