From 2dc8e8151129aabbf5477a0776db482e61665625 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Wed, 25 May 2022 23:10:04 +0200 Subject: [PATCH] Add internal link --- docs/extend/how_to_plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extend/how_to_plugin.md b/docs/extend/how_to_plugin.md index d757bcf..f61bd74 100644 --- a/docs/extend/how_to_plugin.md +++ b/docs/extend/how_to_plugin.md @@ -36,7 +36,7 @@ If you want to make your life easier, try to follow these guidelines; break wher - keep it simple - more that 1000 LOC are normally to much for a plugin - use mixins where possible - we try to keep coverage high for them so they are not likely to break - do not use internal functions - if a functions name starts with `_` it is internal and might change at any time -- keep you imports clean - the APIs for plugins and mixins are young and evolving. Use +- keep you imports clean - the APIs for plugins and mixins are young and evolving (see [here](plugins.md#imports)). Use ``` from plugin import InvenTreePlugin, registry from plugin.mixins import APICallMixin, SettingsMixin, ScheduleMixin, BarcodeMixin