dankocevski / pyLCR

A python interface to the Fermi Light Curve Repository
GNU General Public License v3.0
4 stars 4 forks source link

Typo in plotLightCurve (candence) #8

Closed andresgur closed 1 year ago

andresgur commented 1 year ago

From plotLightCurve

# Quantify the cadence if 'daily' in cadence: duration = 259200 elif 'weekly' in candence: duration = 604800 elif 'monthly' in cadence: duration = 2592000

in weekly it should be "cadence" not candence

carlosm-silva commented 1 year ago

This issue should be fixed in pull requests #7 and #4, as both contain commit https://github.com/dankocevski/pyLCR/pull/7/commits/d889d03338c0e492fc2b8ab641148691bb7bee2b

dankocevski commented 1 year ago

Thank you!