Skip to content

Commit a962c14

Browse files
committed
fixed imports
1 parent 61b39fb commit a962c14

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ A slightly more low-level way to interact with the environment is to use
8989
the 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

151152
Show 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()

0 commit comments

Comments
 (0)