Skip to content

Commit

Permalink
fix(#2737): Styling correction
Browse files Browse the repository at this point in the history
  • Loading branch information
pbanaszkiewicz committed Feb 16, 2025
1 parent 494f503 commit 0ca4ff3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions amy/emails/actions/new_membership_onboarding.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ def new_membership_onboarding_strategy(membership: Membership) -> StrategyEnum:
# email would be de-scheduled.
# UPDATE 2025-02-15 (#2761):
# We're allowing scheduling only for bronze, silver, gold or platinum variants.
email_should_exist = bool(
membership.pk and task_count and membership_acceptable_variant
)
email_should_exist = bool(membership.pk and task_count and membership_acceptable_variant)

if not email_exists and email_should_exist:
result = StrategyEnum.CREATE
Expand Down

0 comments on commit 0ca4ff3

Please sign in to comment.