Fix: missing name in plugins

This commit is contained in:
mrjk 2022-03-10 12:06:32 -05:00
parent 0ce3417360
commit ff2f170685
2 changed files with 3 additions and 5 deletions

View File

@ -1,20 +1,18 @@
"""Hierarchy backend plugin"""
import logging
#from pprint import pprint
from kheops.plugin.common import ScopePlugin, ScopeExtLoop
from kheops.utils import path_assemble_hier
log = logging.getLogger(__name__)
from pprint import pprint
class Plugin(ScopePlugin, ScopeExtLoop):
"""Hierarchy plugin"""
_plugin_name = "hier"
plugin_name = "hier"
_schema_props_new = {
"hier": {
"default": None,

View File

@ -15,7 +15,7 @@ class Plugin(StrategyPlugin):
"""Last strategy plugin"""
_plugin_name = "merge_schema"
plugin_name = "merge_schema"
_schema_props_new = None
selector = "matched"