Skip to content

Commit a900ba1

Browse files
committed
order_details classes to functions
1 parent 6aac6b8 commit a900ba1

File tree

6 files changed

+484
-1051
lines changed

6 files changed

+484
-1051
lines changed

planet/__init__.py

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@
1414
from .api.http import Session
1515
from .api.models import Order
1616
from .api.orders import OrdersClient
17-
from .api.order_details import (
18-
OrderDetails, Product, Notifications, Delivery, AmazonS3Delivery,
19-
AzureBlobStorageDelivery, GoogleCloudStorageDelivery,
20-
GoogleEarthEngineDelivery, Tool, ClipTool)
17+
from .api import order_details
2118
from .api.__version__ import __version__ # NOQA
2219
from .auth import Auth
2320

@@ -26,15 +23,6 @@
2623
Session,
2724
OrdersClient,
2825
Order,
29-
OrderDetails,
30-
Product,
31-
Notifications,
32-
Delivery,
33-
AmazonS3Delivery,
34-
AzureBlobStorageDelivery,
35-
GoogleCloudStorageDelivery,
36-
GoogleEarthEngineDelivery,
37-
ClipTool,
38-
Tool,
26+
order_details,
3927
Auth,
4028
]

0 commit comments

Comments
 (0)