You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to add some additional Hebrew calendar holidays but I don't know how to initiate that. I wrote the code, but I don't know the process for initiating the feature and making the pull request.
def shemini_azeret(year, eve=None):
year, month, day = hebrew.to_jd_gregorianyear(year, hebrew.TISHRI, 22)
if eve:
day = day - 1
return year, month, day
def lag_baomer(year, eve=None):
year, month, day = hebrew.to_jd_gregorianyear(year, hebrew.IYYAR, 18)
if eve:
day = day - 1
return year, month, day
def tu_beshvat(year, eve=None):
year, month, day = hebrew.to_jd_gregorianyear(year, hebrew.SHEVAT, 15)
if eve:
day = day - 1
return year, month, day
def ninth_av(year, eve=None):
year, month, day = hebrew.to_jd_gregorianyear(year, hebrew.AV, 9)
if eve:
day = day - 1
return year, month, day
I would like to add some additional Hebrew calendar holidays but I don't know how to initiate that. I wrote the code, but I don't know the process for initiating the feature and making the pull request.
The text was updated successfully, but these errors were encountered: