Somehow I can't define a local class variable that I can read and write to in multiple methods.
class Queue(models.Model):
myVar = {}
def method(self):
self.myVar = {"var":"value"}
Error:
ValueError: : "'module.model' object attribute 'var' is read-only" while evaluating
How would this be approached in Odoo?