hasgeek / funnel

Function contains unused argument PYL-W0613
Anti-pattern
Major
1 occurrence in this check
Unused argument 'old_value'
174
175@event.listens_for(AccountMembership.is_owner, 'set')
176def _ensure_owner_is_admin_too(
177    target: AccountMembership, value: Any, old_value: Any, _initiator: Any178) -> None:
179    if value:
180        target.is_admin = True