From ada1eeeb3554ffc3ce0f6af92c12a10eda3e34b3 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sun, 8 May 2022 07:53:21 +1000 Subject: [PATCH] Remove 'no cover' --- InvenTree/plugin/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/template.py b/InvenTree/plugin/template.py index 0f580a8023..53ee7bb6db 100644 --- a/InvenTree/plugin/template.py +++ b/InvenTree/plugin/template.py @@ -35,7 +35,7 @@ class PluginTemplateLoader(FilesystemLoader): for plugin in registry.plugins.values(): new_path = Path(plugin.path) / dirname if Path(new_path).is_dir(): - template_dirs.append(new_path) # pragma: no cover + template_dirs.append(new_path) return tuple(template_dirs)