From cb5108bbc2a3632ef2b8729d9e85af6a30f76ebe Mon Sep 17 00:00:00 2001 From: Jacan Chaplais Date: Wed, 16 Nov 2022 11:57:36 +0000 Subject: [PATCH] trivial update to __all__ for consistency --- heparchy/write/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/heparchy/write/__init__.py b/heparchy/write/__init__.py index 72358eb..afcc4a0 100644 --- a/heparchy/write/__init__.py +++ b/heparchy/write/__init__.py @@ -13,4 +13,5 @@ from .hdf import * -__all__ = hdf.__all__.copy() +__all__ = [] +__all__.extend(hdf.__all__)