Skip to content

Commit

Permalink
perf(datasets): lazily load datasets in init files (text)
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <[email protected]>
  • Loading branch information
deepyaman committed Jul 29, 2023
1 parent 11ca34e commit 4a051c7
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions kedro-datasets/kedro_datasets/text/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
"""``AbstractDataSet`` implementation to load/save data from/to a text file."""
from typing import Any

__all__ = ["TextDataSet"]
import lazy_loader as lazy

from contextlib import suppress
# https://github.com/pylint-dev/pylint/issues/4300#issuecomment-1043601901
TextDataSet: Any

with suppress(ImportError):
from .text_dataset import TextDataSet
__getattr__, __dir__, __all__ = lazy.attach(
__name__, submod_attrs={"text_dataset": ["TextDataSet"]}
)

0 comments on commit 4a051c7

Please sign in to comment.