Skip to content

Commit

Permalink
🎨 Fix soma
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed Dec 9, 2024
1 parent 9ef548e commit 71dea22
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lamindb/_curate.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def __init_subclass__(cls, **kwargs):

# Deprecated methods
if "sphinx" not in sys.modules:
cls.add_new_from_columns = cls._add_new_from_columns
if hasattr(cls, "_add_new_from_columns"):
cls.add_new_from_columns = cls._add_new_from_columns

def validate(self) -> bool:
"""Validate dataset.
Expand Down

0 comments on commit 71dea22

Please sign in to comment.