From 5f094be1137c7b8b202317286dc9f626f54671b6 Mon Sep 17 00:00:00 2001 From: Pawel Suwala Date: Sat, 3 Jul 2021 16:02:06 +0200 Subject: [PATCH] [fix] Change Ireland's VAT rate back to 23% (COVID cut is over) Ireland has announced a temporary VAT rate cut from 23% to 21%. The measure will come into place on 1 September 2020 until 28 February 2021. --- pyvat/vat_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyvat/vat_rules.py b/pyvat/vat_rules.py index 9ee9884..bf40d93 100644 --- a/pyvat/vat_rules.py +++ b/pyvat/vat_rules.py @@ -360,7 +360,7 @@ def get_vat_rate(self, item_type): 'FR': FrVatRules(), 'HR': HrVatRules(25), 'HU': ConstantEuVatRateRules(27), - 'IE': IeVatRules(21), + 'IE': IeVatRules(23), 'IT': ConstantEuVatRateRules(22), 'LT': ConstantEuVatRateRules(21), 'LU': LuVatRules(),