From 5cb4f0e73d5b1a38ae3925cd66a8656353d0ac6b Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 11 May 2022 16:57:23 +0200 Subject: [PATCH] PEP fix --- InvenTree/plugin/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/plugin.py b/InvenTree/plugin/plugin.py index aa4ffe6a1f..2acebcbd47 100644 --- a/InvenTree/plugin/plugin.py +++ b/InvenTree/plugin/plugin.py @@ -29,7 +29,7 @@ class MetaBase: SLUG = None TITLE = None - def get_meta_value(self, key: str, old_key: str = None, __default = None): + def get_meta_value(self, key: str, old_key: str = None, __default=None): """Reference a meta item with a key Args: