From 0862b18fb9b433078246d79a6bb0576451e718c5 Mon Sep 17 00:00:00 2001 From: ok300 <106775972+ok300@users.noreply.github.com> Date: Fri, 17 Nov 2023 13:21:37 +0100 Subject: [PATCH] Fix python snippet --- src/guide/fiat_currencies.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/guide/fiat_currencies.md b/src/guide/fiat_currencies.md index a01ac30..e41181e 100644 --- a/src/guide/fiat_currencies.md +++ b/src/guide/fiat_currencies.md @@ -115,11 +115,7 @@ To get the current BTC rate in the various supported fiat currencies:
```python,ignore -try: - fiat_rates = sdk_services.fetch_fiat_rates() - # print your desired rate -except Exception as error: - # Handle error +{{#include ../../snippets/python/src/fiat_currencies.py:fetch-fiat-rates}} ```