"""IVA catalogue access through committed registry data.:func:`load_iva_rules_from_manual` preserves the manual-loader entry pointwhile delegating to :func:`resolve_catalogue` and returning the reviewed:class:`IvaCatalogue` for the requested filing year."""from__future__importannotationsfromdatetimeimportdatefrom...core.configimportSettingsfrom._catalogueimportresolve_cataloguefrom._schemaimportIvaCatalogue
[docs]defload_iva_rules_from_manual(year:int,*,settings:Settings|None=None,)->IvaCatalogue:"""Load the reviewed :class:`IvaCatalogue` for ``year``."""delsettingsreturnresolve_catalogue(on=date(year,1,1))