File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,8 @@ A slightly more low-level way to interact with the environment is to use
89
89
the service methods directly:
90
90
```
91
91
>>> from pprint import pprint
92
- >>> from sasctl import Session, folders
92
+ >>> from sasctl import Session
93
+ >>> from sasctl.services import folders
93
94
94
95
>>> with Session(host, username, password):
95
96
... folders = folders.list_folders()
@@ -150,7 +151,8 @@ complete examples see the [examples](examples) folder.
150
151
151
152
Show models currently in Model Manager:
152
153
```
153
- >>> from sasctl import Session, model_repository
154
+ >>> from sasctl import Session
155
+ >>> from sasctl.services import model_repository
154
156
155
157
>>> with Session(host, username, password):
156
158
... models = model_repository.list_models()
You can’t perform that action at this time.
0 commit comments