Skip to content

Commit e500b5c

Browse files
Fixed import bug.
1 parent 0acdc72 commit e500b5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

connect/models/asset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from .configuration import Configuration
1010
from .connection import Connection
1111
from .contract import Contract
12-
from .fulfillment import Fulfillment
1312
from .item import Item
1413
from .marketplace import Marketplace
1514
from .param import Param
@@ -149,6 +148,7 @@ def get_requests(self, config=None):
149148
"""
150149
from connect.config import Config
151150
from connect.resources.base import ApiClient
151+
from .fulfillment import Fulfillment
152152
text, _ = ApiClient(
153153
config or Config.get_instance(),
154154
'assets/' + self.id + '/requests').get()

connect/models/usage_listing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class UsageListing(BaseModel):
2828
""" (str) Creation time. """
2929

3030
# Undocumented fields (they appear in PHP SDK)
31-
31+
3232
vendor = None # type: Company
3333
""" (:py:class:`.Company`) Vendor Object. """
3434

0 commit comments

Comments
 (0)