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
8989the service methods directly:
9090```
9191>>> from pprint import pprint
92- >>> from sasctl import Session, folders
92+ >>> from sasctl import Session
93+ >>> from sasctl.services import folders
9394
9495>>> with Session(host, username, password):
9596... folders = folders.list_folders()
@@ -150,7 +151,8 @@ complete examples see the [examples](examples) folder.
150151
151152Show models currently in Model Manager:
152153```
153- >>> from sasctl import Session, model_repository
154+ >>> from sasctl import Session
155+ >>> from sasctl.services import model_repository
154156
155157>>> with Session(host, username, password):
156158... models = model_repository.list_models()
You can’t perform that action at this time.
0 commit comments