Skip to content

Commit

Permalink
Fix new black formatting (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
aboucaud authored Feb 9, 2022
1 parent 917ffb3 commit b9d1dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galcheat/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def from_dict(cls, filter_info):
name = filter_info["name"]
psf_fwhm = filter_info["psf_fwhm"] * u.arcsec
zeropoint = filter_info["zeropoint"] * u.mag
sky_brightness = filter_info["sky_brightness"] * (u.mag / u.arcsec ** 2)
sky_brightness = filter_info["sky_brightness"] * (u.mag / u.arcsec**2)
exposure_time = filter_info["exposure_time"] * u.s
wavelength = filter_info.get("central_wavelength")
wavelength = wavelength if wavelength is None else wavelength * u.nm
Expand Down

0 comments on commit b9d1dc3

Please sign in to comment.