Skip to content

Commit

Permalink
importers: back to built-in dict
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Sep 14, 2024
1 parent a278c7e commit 135ea5f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/plone/exportimport/importers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from .base import BaseImporter
from collections import OrderedDict
from pathlib import Path
from plone import api
from plone.exportimport import interfaces
Expand Down Expand Up @@ -38,7 +37,7 @@ def __init__(self, site):

def all_importers(self) -> List[BaseImporter]:
"""Return all importers."""
importers = OrderedDict()
importers = {}
for importer_name in IMPORTER_NAMES:
importer = queryAdapter(
self.site, interfaces.INamedImporter, name=importer_name
Expand Down

0 comments on commit 135ea5f

Please sign in to comment.