31 lines
796 B
Python
31 lines
796 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# python-holidays
|
||
|
# ---------------
|
||
|
# A fast, efficient Python library for generating country, province and state
|
||
|
# specific sets of holidays on the fly. It aims to make determining whether a
|
||
|
# specific date is a holiday as fast and flexible as possible.
|
||
|
#
|
||
|
# Author: ryanss <ryanssdev@icloud.com> (c) 2014-2017
|
||
|
# dr-prodigy <maurizio.montel@gmail.com> (c) 2017-2020
|
||
|
# Website: https://github.com/dr-prodigy/python-holidays
|
||
|
# License: MIT (see LICENSE file)
|
||
|
|
||
|
from holidays.holiday_base import HolidayBase
|
||
|
from .united_kingdom import UnitedKingdom
|
||
|
|
||
|
|
||
|
class Ireland(UnitedKingdom):
|
||
|
|
||
|
def __init__(self, **kwargs):
|
||
|
self.country = 'Ireland'
|
||
|
HolidayBase.__init__(self, **kwargs)
|
||
|
|
||
|
|
||
|
class IE(Ireland):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class IRL(Ireland):
|
||
|
pass
|