From 01e1bc157c210c97e98f4f68c3a5372410193d99 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Mon, 3 Mar 2025 20:29:33 +0000 Subject: [PATCH] Use double quotes in binder example --- binder/README.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binder/README.ipynb b/binder/README.ipynb index 66630c9e..960f368f 100644 --- a/binder/README.ipynb +++ b/binder/README.ipynb @@ -20,7 +20,7 @@ "import os\n", "\n", "print(\n", - " f'This container is using tag {os.environ[\"TAG\"]} of the jupyter/base-notebook image'\n", + " f\"This container is using tag {os.environ['TAG']} of the jupyter/base-notebook image\"\n", ")" ] },