From 84ea56a8f252eaf29cb8f7a71bd0285d7df8dbd9 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 15 Nov 2021 02:11:12 +0100 Subject: [PATCH] docstrings should be manadtory --- InvenTree/plugin/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index 73bd09dc3a..c29e532789 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -49,6 +49,7 @@ class PluginConfig(models.Model): return name def __init__(self, *args, **kwargs): + """override to set original state of""" super().__init__(*args, **kwargs) self.__org_active = self.active