Skip to content

Commit

Permalink
Only return nationwide holidays for Germany when no province is passe…
Browse files Browse the repository at this point in the history
…d explicitly (vacanza#241)
  • Loading branch information
bitraten authored and dr-prodigy committed Nov 13, 2019
1 parent f0f2a6d commit c9337d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holidays.py
Expand Up @@ -2338,7 +2338,7 @@ class Germany(HolidayBase):

def __init__(self, **kwargs):
self.country = 'DE'
self.prov = kwargs.pop('prov', 'SH')
self.prov = kwargs.pop('prov', None)
HolidayBase.__init__(self, **kwargs)

def _populate(self, year):
Expand Down

0 comments on commit c9337d6

Please sign in to comment.