Skip to content

Commit

Permalink
Fix namespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmckinsey1 committed Nov 15, 2024
1 parent 819e711 commit 3751cf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions thicket/external/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,9 @@ def render_frame(self, node, dataframe, indent="", child_indent=""):
# Auto choose num bins
nintervals = min(math.ceil(math.sqrt(nprofs)), 20)
# Add min/max to tree
min = hist_data.min()
max = hist_data.max()
result += f" ({min:.{self.precision}f}, {max:.{self.precision}f}) "
min_num = hist_data.min()
max_num = hist_data.max()
result += f" ({min_num:.{self.precision}f}, {max_num:.{self.precision}f}) "
# Define unicode bars
bar_list = [
"_",
Expand Down

0 comments on commit 3751cf8

Please sign in to comment.