Skip to content

Commit 899c842

Browse files
committed
Fix flake8 violations
1 parent 124d8b5 commit 899c842

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

chartmogul/api/customer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from .task import Task
1616
from .customers.subscription import CustomerSubscription
1717

18+
1819
class Address(DataObject):
1920
class _Schema(Schema):
2021
address_zip = fields.String(allow_none=True)

chartmogul/api/customers/subscription.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ def _loadJSON(cls, jsonObj):
6666
"list_imported", "get", "/import/customers{/uuid}/subscriptions"
6767
)
6868

69+
6970
@classmethod
7071
def _deprecated_list_imported(cls, config, **kwargs):
7172
warnings.warn(
@@ -75,6 +76,7 @@ def _deprecated_list_imported(cls, config, **kwargs):
7576
)
7677
return _original_list_imported.__func__(cls, config, **kwargs)
7778

79+
7880
CustomerSubscription.list_imported = _deprecated_list_imported
7981
CustomerSubscription.cancel = CustomerSubscription._method(
8082
"cancel", "patch", "/import/subscriptions{/uuid}"

0 commit comments

Comments
 (0)