Skip to content

Commit

Permalink
Expose functionality via __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-narozniak committed Nov 15, 2023
1 parent eded53c commit f59fb9c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions datasets/flwr_datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@
"""Flower Datasets main package."""


from flwr_datasets import partitioner, resplitter
from flwr_datasets.common.version import package_version as _package_version
from flwr_datasets.federated_dataset import FederatedDataset

from .federated_dataset import FederatedDataset

__all__ = ["FederatedDataset"]
__all__ = [
"FederatedDataset",
"partitioner",
"resplitter",
]

__version__ = _package_version

0 comments on commit f59fb9c

Please sign in to comment.