Skip to content
Snippets Groups Projects
Commit 27dda64a authored by florian's avatar florian
Browse files

FIX: Add missing metaclass to Converter

parent bdfd165f
No related branches found
No related tags found
1 merge request!53Release 0.1
Pipeline #28820 failed
...@@ -36,7 +36,7 @@ from .structure_elements import (StructureElement, Directory, File, Dict, JSONFi ...@@ -36,7 +36,7 @@ from .structure_elements import (StructureElement, Directory, File, Dict, JSONFi
DictFloatElement, DictDictElement, DictFloatElement, DictDictElement,
TextElement, DictTextElement, DictElement, DictListElement) TextElement, DictTextElement, DictElement, DictListElement)
from typing import Dict as Dict_t, List, Optional, Tuple, Union from typing import Dict as Dict_t, List, Optional, Tuple, Union
from abc import abstractmethod from abc import ABCMeta, abstractmethod
from string import Template from string import Template
import yaml_header_tools import yaml_header_tools
...@@ -255,7 +255,7 @@ def create_records(values: GeneralStore, ...@@ -255,7 +255,7 @@ def create_records(values: GeneralStore,
return keys_modified return keys_modified
class Converter(object): class Converter(object, metaclass=ABCMeta):
""" """
Converters treat StructureElements contained in the hierarchical sturcture. Converters treat StructureElements contained in the hierarchical sturcture.
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment