Countdown of letters with reactor

I am learning twisted and have developed a simple python script that should count down each letter of the alphabet and stop the reactor when it gets to z. However, I am getting the following error: assert builtins.callable(callable), f"{callable} is not callable" builtins.AssertionError: a is not callable Here’s my script: class Countletters(object): letters = list(… Read More Countdown of letters with reactor