From 5993f3678345bb2d3af2d67309b1bab548d9c9cc Mon Sep 17 00:00:00 2001 From: Azulinho Date: Mon, 22 Nov 2021 14:52:40 +0000 Subject: [PATCH] fixes typo in error_msg --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 7f72357..d59c6e0 100644 --- a/app.py +++ b/app.py @@ -300,7 +300,7 @@ def sell_coin(self, coin) -> None: ) # error handling here in case position cannot be placed except Exception as error_msg: - print(f"sell() exception: {errot_msg}") + print(f"sell() exception: {error_msg}") print(f"tried to sell: {coin.volume} of {coin.symbol}") return