py-business-calendar
py-business-calendar copied to clipboard
Issue when holiday is on weekend
When we are passing holiday as weekend, business_calender will return as a weekend, but my requirement is holiday should be the priority i.e.
import datetime
from business_calendar import Calendar
cal = Calendar(holidays=['2024-6-15'])
cal.isholiday(datetime.datetime(2024,6,15))
isholiday returns False even though it is marked as holiday, is there any workaround for this ?