When setting property directly ``` python inv.CurrencyCode = 'USD' ``` Library raises a ValueError("Currency code should be three letters") When using the setter method, things work fine. ``` python inv.set_currency_code('USD') ```