From 2cc5013ea35e6130b9577a8f0b5ebbb25012a33a Mon Sep 17 00:00:00 2001 From: Sabine Date: Fri, 27 Jan 2023 14:22:03 +0200 Subject: [PATCH] Fix run variable (#189) Let's set also this to `neptune_run` so it matches the rest of the example. Signed-off-by: Sabine Signed-off-by: Sabine --- .../sacred/notebooks/Neptune_Sacred.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations-and-supported-tools/sacred/notebooks/Neptune_Sacred.ipynb b/integrations-and-supported-tools/sacred/notebooks/Neptune_Sacred.ipynb index 77904b0b5..1e8ba65fd 100644 --- a/integrations-and-supported-tools/sacred/notebooks/Neptune_Sacred.ipynb +++ b/integrations-and-supported-tools/sacred/notebooks/Neptune_Sacred.ipynb @@ -121,7 +121,7 @@ "```python\n", "from getpass import getpass\n", "\n", - "run = neptune.init_run(\n", + "neptune_run = neptune.init_run(\n", " api_token=getpass(\"Enter your Neptune API token: \"),\n", " project=\"workspace-name/project-name\", # replace with your own\n", ")\n",