"""Eligibility validate mapping.""" from payee.utils.validations import ( validate_country_of_tax_residence_is_set, validate_vat_collected, validate_w_form_exists, ) TAX_REQUIREMENTS_VALIDATORS = { 'requires_country_of_tax_residence': validate_country_of_tax_residence_is_set, 'requires_vat_collection': validate_vat_collected, 'requires_w_form': validate_w_form_exists, }