Hi
I have just downloaded the Kenbak IDE project from Github.
I love what u did!
However, just wanted to share problem I encountered when trying to run it after downloading
Using Python 3.12
Line
txt_assembled = TextAssembly(txt_code breakPoints)
Producted error, since the __init__ expects there will be a master reference and jhence takes the breakPoints arg as the master arg.
Moreover, since breakPoint is defined as global in the function there is really no need to transfer it to this function
Hence changing abov eline to:
txt_assembled = TextAssembly(txt_code) #breakPoints)
and everything is now working
Not sure if this is related to specific Python version or not
Rgrds
Leor