Skip to content

Commit

Permalink
INTECH-596: fix bad quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostya Intsyn committed Aug 24, 2023
1 parent 5c55453 commit 1c3a5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion its_on/admin/views/switches.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1c3a5de

Please sign in to comment.