background processing so I made a couple worker classes that inherit QRunnable. Now I need a helper method to be available to all my worker classes, so I was thinking to make an intermediate class with that method, and then make workers inherit both that class and QRunnable. Is it a good/pythonic idea? GPT thinks so but I kinda like humans' opinions :)
Use composition instead of inheritance. Honestly, you probably don't need a class to begin with.
Can you elaborate?
There's no need for a helper function to be added into a class hierarchy. You can just call function
Обсуждают сегодня