Skip to content

Commit

Permalink
Fix a bug that prevented the creation of new Data transformer specifi…
Browse files Browse the repository at this point in the history
…cations (#190)
  • Loading branch information
soininen authored Mar 1, 2024
2 parents 569fa28 + 96c0c2e commit 9b81ecc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spine_items/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def _factories_and_executable_items():
from .data_store.data_store_factory import DataStoreFactory
from . import data_transformer
from .data_transformer.data_transformer_factory import DataTransformerFactory
from .data_transformer import specification_factory
from . import exporter
from .exporter.exporter_factory import ExporterFactory
from .exporter import specification_factory
Expand Down Expand Up @@ -49,7 +50,7 @@ def _factories_and_executable_items():
)
factories = {info.item_type(): factory for info, factory in zip(item_infos, factories)}
executables = {module.item_info.ItemInfo.item_type(): module.executable_item.ExecutableItem for module in modules}
specification_item_submodules = (exporter, importer, tool)
specification_item_submodules = (data_transformer, exporter, importer, tool)
specification_factories = {
module.item_info.ItemInfo.item_type(): module.specification_factory.SpecificationFactory
for module in specification_item_submodules
Expand Down

0 comments on commit 9b81ecc

Please sign in to comment.