From 1b64e5ca31ddf235c45ec6d55f9874d241f59483 Mon Sep 17 00:00:00 2001 From: Vinicius Rezende Date: Fri, 21 Jul 2023 03:08:15 -0300 Subject: [PATCH] Update README.md Fix typo in README. An Invoice accepts only rules of the same type. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a68d657..2106479 100644 --- a/README.md +++ b/README.md @@ -573,7 +573,7 @@ invoices = starkbank.invoice.create([ interest=2.5, # 2.5% per month tags=["immediate"], rules=[ - starkbank.transfer.Rule( + starkbank.invoice.Rule( key="allowedTaxIds", # Set TaxIds allowed to receive this Invoice value=[ "012.345.678-90" ] )