7 lines
168 B
Python
7 lines
168 B
Python
|
from dateparser.calendars import CalendarBase
|
||
|
from dateparser.calendars.hijri_parser import hijri_parser
|
||
|
|
||
|
|
||
|
class HijriCalendar(CalendarBase):
|
||
|
parser = hijri_parser
|