Skip to content

Commit

Permalink
Fix flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Jul 18, 2018
1 parent 3a28530 commit 4db1545
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion djstripe/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,9 @@ class Customer(StripeObject):
)
# </discount>
email = StripeTextField(null=True)
shipping = StripeJSONField(blank=True, stripe_required=False, help_text="Shipping information associated with the customer.")
shipping = StripeJSONField(
blank=True, stripe_required=False, help_text="Shipping information associated with the customer."
)

# dj-stripe fields
subscriber = ForeignKey(
Expand Down

0 comments on commit 4db1545

Please sign in to comment.