I tried to implement a method for selecting methods (DIM, NORMAL, BRIGHT) from the Style class.
That in turn from the package colorama.
But however, the Style is underlined in red.
Error: [pylint] E1102:Style.(DIM/NORMAL/BRIGHT) is not callable
Code:
if type == "dim": Style.DIM() elif type == "normal": Style.NORMAL() elif type == "bright": Style.BRIGHT()