From: Armaan Bhojwani Date: Tue, 9 Feb 2021 16:27:16 +0000 (-0500) Subject: Fix str + str to int + int concatenation issue X-Git-Tag: v0.6.0~35 X-Git-Url: https://git.armaanb.net/?p=lightcards.git;a=commitdiff_plain;h=7f72a3794aa2c100bd4f946ec62929fafbefaa5a Fix str + str to int + int concatenation issue --- 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