How to get rid of unwanted tabs in text on tkinter with python line continuation

36 Views Asked by At

I have the following code and when it shows in my GUI it includes the indentations for the code structure. How can i get rid of these?

        warningLbl = tkinter.Label(window, text = '!!This Tool Will not work with\
        IVER builds!!', font="16", fg="red")

The text for the label prints like enter image description here

0

There are 0 best solutions below