Skip to content

Commit

Permalink
Fix for recent Awkward release
Browse files Browse the repository at this point in the history
  • Loading branch information
gipert committed Nov 15, 2024
1 parent 4ff9f8a commit 4fd74ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lgdo/types/vectorofvectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def __iter__(self) -> Iterator[NDArray]:
def __str__(self) -> str:
string = self.view_as("ak").show(stream=None)

string = string.strip().removesuffix("]")
string = str(string).strip().removesuffix("]")
string += "\n]"

tmp_attrs = self.attrs.copy()
Expand Down

0 comments on commit 4fd74ee

Please sign in to comment.