Skip to content

Commit 2f7ea18

Browse files
committed
fix check for entitlement_sku_ids
1 parent c10541c commit 2f7ea18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class PremiumLevel(IntEnum):
2626

2727

2828
def can_upsell(ctx):
29-
return config.CAN_UPSELL and ctx.ctx.entitlement_sku_ids is not None
29+
return config.CAN_UPSELL and ctx.entitlement_sku_ids is not None
3030

3131

3232
@Check

0 commit comments

Comments
 (0)