2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 19:46:46 +00:00

Remove 'no cover'

This commit is contained in:
Oliver Walters 2022-05-08 07:53:21 +10:00
parent 50d8f242bb
commit ada1eeeb35

View File

@ -35,7 +35,7 @@ class PluginTemplateLoader(FilesystemLoader):
for plugin in registry.plugins.values(): for plugin in registry.plugins.values():
new_path = Path(plugin.path) / dirname new_path = Path(plugin.path) / dirname
if Path(new_path).is_dir(): if Path(new_path).is_dir():
template_dirs.append(new_path) # pragma: no cover template_dirs.append(new_path)
return tuple(template_dirs) return tuple(template_dirs)