Skip to content

Commit

Permalink
Updates docstring of data adapters to be public facing
Browse files Browse the repository at this point in the history
This is now fully public-facing, we just had not updated the docstring
to show it.
  • Loading branch information
elijahbenizzy committed Mar 9, 2024
1 parent 427f523 commit e37abe2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
12 changes: 0 additions & 12 deletions hamilton/io/data_adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,6 @@ class DataLoader(AdapterCommon, abc.ABC):
"""Base class for data loaders. Data loaders are used to load data from a data source.
Note that they are inherently polymorphic -- they declare what type(s) they can load to,
and may choose to load differently depending on the type they are loading to.
Note that this is not yet a public-facing API -- the current set of data loaders will
be managed by the library, and the user will not be able to create their own.
We intend to change this and provide an extensible user-facing API,
but if you subclass this, beware! It might change.
"""

@abc.abstractmethod
Expand Down Expand Up @@ -162,12 +156,6 @@ class DataSaver(AdapterCommon, abc.ABC):
"""Base class for data savers. Data savers are used to save data to a data source.
Note that they are inherently polymorphic -- they declare what type(s) they can save from,
and may choose to save differently depending on the type they are saving from.
Note that this is not yet a public-facing API -- the current set of data savers will
be managed by the library, and the user will not be able to create their own.
We intend to change this and provide an extensible user-facing API,
but if you subclass this, beware! It might change.
"""

@abc.abstractmethod
Expand Down
2 changes: 1 addition & 1 deletion hamilton/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = (1, 52, 0)
VERSION = (1, 53, 0, "rc0")

0 comments on commit e37abe2

Please sign in to comment.