Skip to content

Commit

Permalink
flake8 fixes, figure tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorris3 committed Mar 25, 2020
1 parent bcf2d4d commit 06ae6da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/index.rst
Expand Up @@ -22,6 +22,7 @@ Here's a simple example:
ax.set_xlabel('Wavelength [$\mu$m]')
ax.set_ylabel('Transit depth')
ax.legend()
plt.tight_layout()
plt.show()


Expand Down
1 change: 0 additions & 1 deletion retrieval/core.py
Expand Up @@ -26,7 +26,6 @@ def transit_depth(temperature):
"""
wavenumber, kappa = water_opacity(temperature)


g = G * M_jup / R_jup**2
rstar = 1 * R_sun

Expand Down
2 changes: 1 addition & 1 deletion retrieval/spectrum.py
Expand Up @@ -24,4 +24,4 @@ def plot(self, ax=None, **kwargs):

ax.plot(self.wavelength, self.flux, **kwargs)

return ax
return ax

0 comments on commit 06ae6da

Please sign in to comment.