Skip to content

Commit

Permalink
cleanup debug print statements
Browse files Browse the repository at this point in the history
Co-authored-by: Cameron Hummels <[email protected]>
  • Loading branch information
neutrinoceros and chummels authored Oct 4, 2021
1 parent 7ac7c0d commit 60c3800
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions yt/visualization/base_plot_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ def _init_image(self, data, cbnorm, cblinthresh, cmap, extent, aspect):
np.ceil(np.log10(zmax)),
)
)
print("branch 1")
elif zmax <= 0.0:
yticks = (
list(
Expand All @@ -299,7 +298,6 @@ def _init_image(self, data, cbnorm, cblinthresh, cmap, extent, aspect):
)
+ [zmax]
)
print("branch 2")
else:
yticks = (
list(
Expand All @@ -321,7 +319,6 @@ def _init_image(self, data, cbnorm, cblinthresh, cmap, extent, aspect):
)
)
)
print("branch 3")
self.cb.set_ticks(yticks)
else:
self.cb = self.figure.colorbar(self.image, self.cax)
Expand Down

0 comments on commit 60c3800

Please sign in to comment.