You need to sign in or sign up before continuing.
Code refactoring
- Move useful functions away from classes, so that they can be used without putting up the entire app
- Minimize passing around dicts as function parameters
- If something is used by all methods it should be saved as an attribute of the class (es. dz in queuemanager)
...