Skip to content

Commit

Permalink
more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lgray committed Jan 13, 2024
1 parent b23ce90 commit b6192a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coffea/lookup_tools/dense_mapped_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def _evaluate(self, *args, ignore_missing=False, **kwargs):
return out

def __repr__(self):
myrepr = object.__repr__(self)
myrepr += f" {self._dimension} dimensional histogram with axes:\n"
myrepr = object.__repr__(self) + "\n"
myrepr += f"{self._dimension} dimensional histogram with axes:\n"
temp = ""
for idim, axis in enumerate(self._axes):
temp += f"\t{idim + 1}: {axis}\n"
Expand Down

0 comments on commit b6192a7

Please sign in to comment.