From 704b2bd3f6eb6194276383a2f7c1ce0771a8b017 Mon Sep 17 00:00:00 2001 From: vincent d warmerdam Date: Fri, 27 Sep 2024 10:16:32 +0200 Subject: [PATCH 1/2] Update troubleshooting.rst --- docs/troubleshooting.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index 25149a2..1723d20 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -28,7 +28,7 @@ importing the library:: app = Django() api = NinjaAPI() -we can fix this by moving the ninja import to after instantiating the ``Django`` class: +we can fix this by moving the ninja import to after instantiating the ``Django`` class:: from nanodjango import Django app = Django() From cae6313e49f2c9d040a076a2b67f1e1c68dfd131 Mon Sep 17 00:00:00 2001 From: vincent d warmerdam Date: Fri, 27 Sep 2024 10:18:04 +0200 Subject: [PATCH 2/2] Update troubleshooting.rst --- docs/troubleshooting.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index 1723d20..e4dd459 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -28,7 +28,7 @@ importing the library:: app = Django() api = NinjaAPI() -we can fix this by moving the ninja import to after instantiating the ``Django`` class:: +We can fix this by moving the ninja import to after instantiating the ``Django`` class:: from nanodjango import Django app = Django()