Skip to content

Commit 99f75c8

Browse files
committed
Correcting - symbol, adding function import to init
1 parent f1e51c6 commit 99f75c8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

servicex_analysis_utils/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2828
from .materialization import to_awk
2929
from .file_peeking import get_structure
30+
from .read_buffers import necessary_branches
3031

3132
__version__ = "1.0.2"
32-
__all__ = ["to_awk", "get_structure"]
33+
__all__ = ["to_awk", "get_structure", "necessary_branches"]

servicex_analysis_utils/read-buffers.py renamed to servicex_analysis_utils/read_buffers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def build_typetracer(form):
8282
"""
8383
stamped_form = add_keys(form)
8484

85-
tracer, report = ak.typetracer.TypeTracer(
85+
tracer, report = ak.typetracer.typetracer_with_report(
8686
stamped_form,
8787
buffer_key=is_branch_buffer,
8888
highlevel=True,

0 commit comments

Comments
 (0)