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():
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)