From 36f3536b3a35136dd27c2e050f6a80f42452b244 Mon Sep 17 00:00:00 2001 From: Michael Sendker Date: Sat, 13 Jul 2024 12:49:17 -0400 Subject: [PATCH] Fix --- app/utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/config.py b/app/utils/config.py index de2af30..14bb43c 100644 --- a/app/utils/config.py +++ b/app/utils/config.py @@ -18,7 +18,7 @@ def read_creds(path): class SpecialDate: def __init__(self, i, rawdict: dict[str, Any]): - self.i = i + self.i = i + 1 # we're 1 indexing self.name: str = rawdict['name'] self.date: str = rawdict['date'] # had no idea yaml automatically converted this self.topic: str = rawdict['topic']