Skip to content

Commit a5c8a02

Browse files
committed
Fix y log scales
1 parent e09514a commit a5c8a02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mesaPlot/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ def _plotAnnotatedLine(self,ax,x,y,xmin,xmax,fy=None,ymin=None,ymax=None,annotat
10421042
if xlog:
10431043
ax.set_xscale("log", nonposx='clip')
10441044
if ylog:
1045-
ax.set_yscale("log", nonposx='clip')
1045+
ax.set_yscale("log", nonposy='clip')
10461046
if np.all(y<=0):
10471047
return
10481048

0 commit comments

Comments
 (0)