Skip to content

Commit

Permalink
Remove superfluous print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Oct 2, 2019
1 parent 635447b commit 53340e5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion verif/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,6 @@ def __init__(self, filename):
elev = locationInfo[id].elev
if not shownConflictingWarning:
if (not np.isnan(currLat) and abs(currLat - lat) > 0.0001) or (not np.isnan(currLon) and abs(currLon - lon) > 0.0001) or (not np.isnan(currElev) and abs(currElev - elev) > 0.001):
print(currLat - lat, currLon - lon, currElev - elev)
verif.util.warning("Conflicting lat/lon/elev information: (%f,%f,%f) does not match (%f,%f,%f)" % (currLat, currLon, currElev, lat, lon, elev))
shownConflictingWarning = True
else:
Expand Down
1 change: 0 additions & 1 deletion verif/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,6 @@ def _plot_rank_core(self, data):
if yy[i, j] > 0:
mpl.text(curr_x, curr_y, "%d%%" % int(yy[i, j] * 100), horizontalalignment="center", verticalalignment="center")

print(self.tick_font_size)
mpl.gca().set_xticklabels(range(F), fontsize=self.tick_font_size)
mpl.gca().set_xticks([0.5, F-0.5])
if self._metric.orientation == 0:
Expand Down

0 comments on commit 53340e5

Please sign in to comment.