Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit be921cb

Browse files
committed
unrelated lint
1 parent a16a695 commit be921cb

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

services/activation.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,15 @@ def try_auto_activate(org: Owner, owner: Owner) -> bool:
7878
if activator.is_autoactivation_enabled():
7979
log.info(
8080
"Attemping to auto-activate user",
81-
extra=dict(
82-
owner_id=owner.ownerid,
83-
org_id=org.ownerid
84-
),
81+
extra=dict(owner_id=owner.ownerid, org_id=org.ownerid),
8582
)
8683
if activator.can_activate_user():
8784
activator.activate_user()
8885
return True
8986
else:
9087
log.info(
9188
"Auto-activation failed -- not enough seats remaining",
92-
extra=dict(
93-
owner_id=owner.ownerid,
94-
org_id=org.ownerid
95-
),
89+
extra=dict(owner_id=owner.ownerid, org_id=org.ownerid),
9690
)
9791
return False
9892

0 commit comments

Comments
 (0)