aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/exts/grafana/ldap_team_sync.py
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-02-15 16:20:39 +0000
committerGravatar Chris Lovering <[email protected]>2025-02-15 16:20:39 +0000
commitec080a3ae2a2e99e762c11a3e643e049de1239e9 (patch)
tree1f6a5829647a30c71bfecf85d6224315e867f881 /arthur/exts/grafana/ldap_team_sync.py
parentBump deps to latest (diff)
Format code to new ruff rules
Diffstat (limited to 'arthur/exts/grafana/ldap_team_sync.py')
-rw-r--r--arthur/exts/grafana/ldap_team_sync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/arthur/exts/grafana/ldap_team_sync.py b/arthur/exts/grafana/ldap_team_sync.py
index f8b3ab0..55bbbd8 100644
--- a/arthur/exts/grafana/ldap_team_sync.py
+++ b/arthur/exts/grafana/ldap_team_sync.py
@@ -127,11 +127,11 @@ class GrafanaLDAPTeamSync(commands.Cog):
colour=discord.Colour.blue(),
)
for team in grafana_teams:
- logger.debug(f"Processing {team["name"]}")
+ logger.debug(f"Processing {team['name']}")
try:
figures = await self._sync_teams(team)
except aiohttp.ClientResponseError as e:
- logger.opt(exception=e).error(f"Error whilst procesing Grafana team {team["name"]}")
+ logger.opt(exception=e).error(f"Error whilst procesing Grafana team {team['name']}")
if channel:
await channel.send(e)
continue