Skip to content

Commit

Permalink
fix nbytes property of ak.Record (#3352)
Browse files Browse the repository at this point in the history
  • Loading branch information
pfackeldey authored Dec 18, 2024
1 parent bc14d22 commit 287347e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/awkward/highlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2032,7 +2032,7 @@ def nbytes(self):
the (small) Python objects that reference the (large)
array buffers.
"""
return self._layout.nbytes
return self._layout.array.nbytes

@property
def fields(self):
Expand Down

0 comments on commit 287347e

Please sign in to comment.