Skip to content

Commit

Permalink
Added DataLoaderConfig to Namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkrukowski committed Mar 7, 2023
1 parent bb0836b commit c79d60d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "edgar_doc_parser"
version = "0.2.2"
version = "0.2.2-1"
authors = [
{ name="Kamil Krukowski", email="[email protected]" },
{ name="Yiting Li"},
Expand Down
4 changes: 3 additions & 1 deletion src/edgar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .document import DocumentType
from .wrappers import load_files, get_files, read_file
from . import pipeline
from .dataloader import DataLoader
from .dataloader import DataLoader, DataLoaderConfig

module_name = 'edgar'

Expand All @@ -14,6 +14,8 @@
_Metadata.__module__ = module_name
DocumentType.__module__ = module_name
DataLoader.__module__ = module_name
DataLoaderConfig.__module__ = module_name


_, _, _ = load_files, get_files, read_file

Expand Down

0 comments on commit c79d60d

Please sign in to comment.