From bd921f2e0518f0051f7887d3ed42123e750fe26a Mon Sep 17 00:00:00 2001 From: Aaron Lichtman Date: Wed, 21 Jun 2023 06:35:22 -0700 Subject: [PATCH] More lint fixes --- jrnl/plugins/calendar_heatmap_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/plugins/calendar_heatmap_exporter.py b/jrnl/plugins/calendar_heatmap_exporter.py index 53061d58..010ab401 100644 --- a/jrnl/plugins/calendar_heatmap_exporter.py +++ b/jrnl/plugins/calendar_heatmap_exporter.py @@ -32,7 +32,7 @@ class CalendarHeatmapExporter(TextExporter): raise NotImplementedError @classmethod - def print_calendar_heatmap(cls, journal_frequency: NestedDict) -> str: + def print_calendar_heatmap(cls, journal_frequency: "NestedDict") -> str: """Returns a string representation of the calendar heatmap.""" console = Console() cal = calendar.Calendar()