From ce687403d44ed053f18ce55b9cb649aa748a2b59 Mon Sep 17 00:00:00 2001 From: tbayer Date: Mon, 8 Apr 2024 13:42:53 -0700 Subject: [PATCH] Fix single/double quotes in storm.ipynb (#225) to avoid "unterminated string literal" error when run in Jupyter Co-authored-by: William FH <13333726+hinthornw@users.noreply.github.com> --- examples/storm/storm.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/storm/storm.ipynb b/examples/storm/storm.ipynb index 88db7e120..b40d6ff2b 100644 --- a/examples/storm/storm.ipynb +++ b/examples/storm/storm.ipynb @@ -1227,8 +1227,8 @@ " ),\n", " (\n", " \"user\",\n", - " 'Write the complete Wiki article using markdown format. Organize citations using footnotes like \"[1]\",\"\n", - " \" avoiding duplicates in the footer. Include URLs in the footer.',\n", + " 'Write the complete Wiki article using markdown format. Organize citations using footnotes like \"[1]\",'\n", + " ' avoiding duplicates in the footer. Include URLs in the footer.',\n", " ),\n", " ]\n", ")\n",