From 9447461f77c228e4396d3b30d222c44b3712042d Mon Sep 17 00:00:00 2001 From: Zai Date: Sat, 28 Oct 2023 01:13:26 +0500 Subject: [PATCH] Fix typo --- README.md | 2 +- example_usage.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e71cd10..772d404 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ decoded_json = response.json() if "token" in decoded_json: print(decoded_json["token"]) else: - print(f"Erro!\n {decoded_json}") + print(f"Error!\n {decoded_json}") ``` diff --git a/example_usage.py b/example_usage.py index acf5c69..efc93fd 100644 --- a/example_usage.py +++ b/example_usage.py @@ -17,4 +17,4 @@ decoded_json = response.json() if "token" in decoded_json: print(decoded_json["token"]) else: - print(f"Erro!\n {decoded_json}") + print(f"Error!\n {decoded_json}")