Skip to content

Commit ec435a4

Browse files
committed
Linting
1 parent 98c77f7 commit ec435a4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

arthur/exts/github/management.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ async def sync_github_org(self) -> None:
108108
)
109109
return
110110

111-
112111
common_info = await self._fetch_common_info()
113112
org_added, org_removed = await self._sync_github_members(report_thread, common_info)
114113
team_added, team_removed = await self._sync_github_teams(report_thread, common_info)
@@ -399,7 +398,9 @@ async def _try_dm_user_invite(self, github_username: str, keycloak_user: dict |
399398
# Extract Discord ID from Keycloak attributes
400399
discord_ids = keycloak_user.get("attributes", {}).get("discordId")
401400
if not discord_ids or not isinstance(discord_ids, list) or not discord_ids:
402-
logger.debug(f"No Discord ID found in Keycloak for {keycloak_user.get('username', 'unknown')} (GitHub: {github_username})")
401+
logger.debug(
402+
f"No Discord ID found in Keycloak for {keycloak_user.get('username', 'unknown')} (GitHub: {github_username})"
403+
)
403404
return
404405

405406
try:

0 commit comments

Comments
 (0)