From 87ef2a338282988593c7d9c21813ad7fcee006d1 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 11 May 2022 12:41:08 +0200 Subject: [PATCH] remove old code --- InvenTree/plugin/plugin.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/InvenTree/plugin/plugin.py b/InvenTree/plugin/plugin.py index c6af7f20d8..005beacb0c 100644 --- a/InvenTree/plugin/plugin.py +++ b/InvenTree/plugin/plugin.py @@ -82,12 +82,3 @@ class InvenTreePluginBase(): else: return False # pragma: no cover - -# TODO @matmair remove after InvenTree 0.7.0 release -class InvenTreePlugin(InvenTreePluginBase): - """ - This is here for leagcy reasons and will be removed in the next major release - """ - def __init__(self): # pragma: no cover - warnings.warn("Using the InvenTreePlugin is depreceated", DeprecationWarning) - super().__init__()