From 1c3a5de99589a44dc74322d36a02240d6de5339f Mon Sep 17 00:00:00 2001 From: Kostya Intsyn Date: Thu, 24 Aug 2023 16:07:55 +0300 Subject: [PATCH] INTECH-596: fix bad quotes --- its_on/admin/views/switches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/its_on/admin/views/switches.py b/its_on/admin/views/switches.py index 4ec56b1..99bc7ba 100644 --- a/its_on/admin/views/switches.py +++ b/its_on/admin/views/switches.py @@ -40,7 +40,7 @@ async def get(self) -> Dict[str, Union[Optional[List[RowProxy]], bool]]: for flag in flags: flag_dicts.append({ **dict(flag), - "estimate_at": flag.created_at + datetime.timedelta(days=flag.ttl), + 'estimate_at': flag.created_at + datetime.timedelta(days=flag.ttl), }) groups = await self.get_distinct_groups(request_params) return {