Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion a2a/docs/06-extending.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ tax = int(subtotal * tax_rate)

def _get_tax_rate(self, address: PostalAddress) -> float:
state_rates = {"CA": 0.0725, "NY": 0.08, "TX": 0.0625}
return state_rates.get(address.addressRegion, 0.05)
return state_rates.get(address.address_region, 0.05)
```

### Add Minimum Order
Expand Down
Loading