Skip to content

Commit

Permalink
Merge pull request #39 from intsyn/master
Browse files Browse the repository at this point in the history
INTECH-596: fix bad quotes
  • Loading branch information
Arondit authored Aug 24, 2023
2 parents abd9bf8 + 1c3a5de commit 396c631
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 396c631

Please sign in to comment.