You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
Currently the Importer uses modules and inheritance chain to apply different types of importers in order (via super call). This is kind of a weird way to do it. A more proper approach would probably be to use a class for each type of importer (or a at least a self extend module) and register them in proper order. Then the Importer would just run through the list until one succeeds.
Currently the Importer uses modules and inheritance chain to apply different types of importers in order (via super call). This is kind of a weird way to do it. A more proper approach would probably be to use a class for each type of importer (or a at least a self extend module) and register them in proper order. Then the Importer would just run through the list until one succeeds.