Skip to content

Commit 0862c8a

Browse files
RafalSkolasinskiFlorentinD
authored andcommitted
apply changes from comments
1 parent 27388d5 commit 0862c8a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

examples/graph-analytics-serverless-standalone.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
"## Conclusion\n",
361361
"\n",
362362
"And we're done!\n",
363-
"We have created a GDS Session, projected a graph, run some algorithms, inspect the results, and deleted the session.\n",
363+
"We have created a GDS Session, constructed a graph, run some algorithms, inspect the algorithm results, and deleted the session.\n",
364364
"This is a simple example, but it shows the main steps of using GDS Sessions."
365365
]
366366
}

scripts/run_notebooks.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,10 @@ def main(filter_func: Callable[[str], bool]) -> None:
133133
notebook_filter = sys.argv[1] if len(sys.argv) >= 2 else ""
134134

135135
session_notebooks = ["graph-analytics-serverless.ipynb"]
136-
session_self_managed_notebooks = ["graph-analytics-serverless-self-managed.ipynb"]
136+
session_self_managed_notebooks = [
137+
"graph-analytics-serverless-self-managed.ipynb",
138+
"graph-analytics-serverless-self-standalone.ipynb",
139+
]
137140

138141
notebooks: Optional[list[str]] = None
139142
if notebook_filter == "sessions-attached":

0 commit comments

Comments
 (0)