Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement dict streaming #1

Merged
merged 11 commits into from
Sep 25, 2024
8 changes: 4 additions & 4 deletions nerdd_module/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from .abstract_model import *
from .cli import *
from .config import *
from .input import ReaderRegistry
from .model import *
from .output import WriterRegistry
from .polyfills import get_entry_points
from .problem import *
from .version import *
from .polyfills import get_entry_points


for entry_point in get_entry_points("nerdd-module.plugins"):
entry_point.load()
271 changes: 0 additions & 271 deletions nerdd_module/abstract_model.py

This file was deleted.

2 changes: 1 addition & 1 deletion nerdd_module/config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .auto_configuration import *
from .configuration import *
from .default_configuration import *
from .dict_configuration import *
from .merged_configuration import *
from .package_configuration import *
from .search_yaml_configuration import *
from .yaml_configuration import *
62 changes: 0 additions & 62 deletions nerdd_module/config/auto_configuration.py

This file was deleted.

Loading
Loading