Skip to content

Commit

Permalink
Probably fixes #265; please test TAxis.__getitem__ and TAxis.intervals,
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski authored Feb 16, 2021
1 parent bfc1380 commit 2b86241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uproot/behaviors/TAxis.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __getitem__(self, where):
return low, high

else:
return fXbins[where + 1], fXbins[where + 2]
return fXbins[where], fXbins[where + 1]

def __iter__(self):
"""
Expand Down

0 comments on commit 2b86241

Please sign in to comment.