File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ $ pip install connect-sdk
2828```
2929### Example
3030``` python
31- from connectsdk .config import Config
32- from connectsdk .logger import logger
33- from connectsdk .models import ActivationTemplateResponse, ActivationTileResponse
34- from connectsdk .models.exception import FulfillmentFail, FulfillmentInquire, Skip
35- from connectsdk.resource import FulfillmentAutomation
31+ from connect .config import Config
32+ from connect .logger import logger
33+ from connect .models import ActivationTemplateResponse, ActivationTileResponse
34+ from connect .models.exception import FulfillmentFail, FulfillmentInquire, Skip
35+ from connect import FulfillmentAutomation
3636
3737Config(file = ' config.json' )
3838
@@ -77,6 +77,5 @@ class ExampleRequestProcessor(FulfillmentAutomation):
7777if __name__ == ' __main__' :
7878 request = ExampleRequestProcessor()
7979 request.process()
80-
8180```
8281
Original file line number Diff line number Diff line change 22from connect .logger import logger
33from connect .models import ActivationTemplateResponse , ActivationTileResponse
44from connect .models .exception import FulfillmentFail , FulfillmentInquire , Skip
5- from connect . resource import FulfillmentAutomation
5+ from connect import FulfillmentAutomation
66
77Config (file = 'config.json' )
88
You can’t perform that action at this time.
0 commit comments