From 052786fe5340c87274b208b29a9b654bd97e6ea0 Mon Sep 17 00:00:00 2001 From: Isaac Flath Date: Sat, 19 Oct 2024 20:16:17 -0400 Subject: [PATCH] Test remove show_docs --- nbs/tutorials/tutorial.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nbs/tutorials/tutorial.ipynb b/nbs/tutorials/tutorial.ipynb index e191f961a..7fa8431fd 100644 --- a/nbs/tutorials/tutorial.ipynb +++ b/nbs/tutorials/tutorial.ipynb @@ -874,14 +874,13 @@ } ], "source": [ - "#| echo: false\n", "#| output: asis\n", "def say_hello(to):\n", " \"Say hello to somebody\"\n", " return f'Hello {to}!'\n", "\n", - "print(div(show_doc(say_hello)._repr_markdown_(),\n", - " classes='py-2 px-3 mb-4 border rounded shadow-sm'.split()))" + "# print(div(show_doc(say_hello)._repr_markdown_(),\n", + "# classes='py-2 px-3 mb-4 border rounded shadow-sm'.split()))" ] }, { @@ -1115,6 +1114,7 @@ "metadata": {}, "outputs": [], "source": [ + "#| export\n", "class HelloSayer:\n", " \"Say hello to `to` using `say_hello`\"\n", " def __init__(self, to): self.to = to\n", @@ -1156,7 +1156,7 @@ } ], "source": [ - "show_doc(HelloSayer)" + "# show_doc(HelloSayer)" ] }, { @@ -1209,7 +1209,7 @@ } ], "source": [ - "show_doc(HelloSayer.say)" + "# show_doc(HelloSayer.say)" ] }, {