From adfb0132a768a9c4fb0ea2cb3835821d954903ee Mon Sep 17 00:00:00 2001 From: Lindsey Gray Date: Sat, 23 Mar 2024 12:05:14 -0500 Subject: [PATCH] fix: hist.dask.new to match top-level package --- src/hist/dask/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hist/dask/__init__.py b/src/hist/dask/__init__.py index 93024c65..b36993ea 100644 --- a/src/hist/dask/__init__.py +++ b/src/hist/dask/__init__.py @@ -13,4 +13,6 @@ from .hist import Hist from .namedhist import NamedHist -__all__ = ["Hist", "NamedHist"] +new = Hist.new + +__all__ = ["Hist", "NamedHist", "new"]