https://bugs.kde.org/show_bug.cgi?id=426866
--- Comment #9 from garli...@outlook.com --- Here's how I can reproduce it. Save two Python files. 'start_here.py' and 'second_file.py'. #### start_here.py from second_file import Greet g = Greet("John") g.say_hi() #### second_file class Greet: def __init__(self, name: str): self.name = name <<-------Set a breakpoint here def say_hi(self): print("Hi there", self.name) -- You are receiving this mail because: You are watching all bug changes.