Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie committed Oct 14, 2023
1 parent 40bee74 commit cc33cec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subscription/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Subscription(models.Model):
editable=True,
on_delete=models.PROTECT,
related_name="subscriptions",
unique=True, # Only one subscription per user
unique=True, # Only one subscription per user
)

paypal_subscription_id = models.CharField(
Expand Down Expand Up @@ -80,7 +80,7 @@ class SubscriptionIndexPage(Page):
),
],
blank=True,
use_json_field=True
use_json_field=True,
)

content_panels = Page.content_panels + [
Expand Down

0 comments on commit cc33cec

Please sign in to comment.