Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed Jan 28, 2017
1 parent 257079d commit 996160f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions itunesiap/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def extract(self):
options[item] = getattr(self, item)
return options


default = Environment(use_production=True, use_sandbox=False, verify_ssl=True)
production = Environment(use_production=True, use_sandbox=False, verify_ssl=True)
sandbox = Environment(use_production=False, use_sandbox=True, verify_ssl=True)
Expand Down
2 changes: 1 addition & 1 deletion itunesiap/receipt.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class InApp(ObjectMapper):
__WHITELIST__ = [
'quantity', 'product_id', 'transaction_id', 'original_transaction_id', 'is_trial_period',
'purchase_date', 'original_purchase_date', 'expires_date', 'cancellation_date',
'purchase_date_ms', 'original_purchase_date_ms', 'expires_date_ms', 'cancellation_date_ms', 'expires_date_formatted',]
'purchase_date_ms', 'original_purchase_date_ms', 'expires_date_ms', 'cancellation_date_ms', 'expires_date_formatted', ]
__EXPORT_FILTERS__ = {
'quantity': int,
'is_trial_period': _to_bool,
Expand Down

0 comments on commit 996160f

Please sign in to comment.