From 7f72a3794aa2c100bd4f946ec62929fafbefaa5a Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Tue, 9 Feb 2021 11:27:16 -0500 Subject: [PATCH] Fix str + str to int + int concatenation issue --- lightcards/display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightcards/display.py b/lightcards/display.py index 2a25354..e0b4f64 100644 --- a/lightcards/display.py +++ b/lightcards/display.py @@ -84,7 +84,7 @@ class Display: + str(self.obj.getIdx() + 1).zfill(len(str(len(self.stack)))) + f"/{str(len(self.stack))})] [" + f"{self.headers[self.current_card().getSide()]} (" - + f"{str(self.current_card().getSide()) + str(1)})] " + + f"{str(int(self.current_card().getSide()) + 1)})] " ) # Put it all togethor -- 2.39.2