From 3087b583d0324d045df650559989d316bee60ef5 Mon Sep 17 00:00:00 2001 From: Johanne Saxegaard Date: Tue, 17 Dec 2024 09:44:51 +0100 Subject: [PATCH] mypy --- src/ssb_konjunk/prompts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssb_konjunk/prompts.py b/src/ssb_konjunk/prompts.py index 38476a3..80b1569 100644 --- a/src/ssb_konjunk/prompts.py +++ b/src/ssb_konjunk/prompts.py @@ -300,5 +300,5 @@ def months_in_quarter(quarter: int | str) -> list[int]: return [4, 5, 6] elif quarter == 3: return [7, 8, 9] - elif quarter == 4: + else: return [10, 11, 12]