From 81a29adc3d6588f9221bed49c38a78b16d6b5ded Mon Sep 17 00:00:00 2001 From: Philipp Fruck Date: Sun, 19 Mar 2023 20:54:14 +0000 Subject: [PATCH] fix typo in UrlsMixin usage (#454) --- docs/extend/plugins/urls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extend/plugins/urls.md b/docs/extend/plugins/urls.md index e242e7a..11bed9e 100644 --- a/docs/extend/plugins/urls.md +++ b/docs/extend/plugins/urls.md @@ -9,7 +9,7 @@ Use the class constant `URLS` for a array of URLs that should be added to InvenT The array has to contain valid URL patterns as defined in the [django documentation](https://docs.djangoproject.com/en/stable/topics/http/urls/). ``` python -class MyUrlsPlugin(URLsMixin, InvenTreePlugin): +class MyUrlsPlugin(UrlsMixin, InvenTreePlugin): NAME = "UrlsMixin"