When some ``DeferredExpression`` is given as initial value to ``Variable``, it fails: ``` hue_f = core.FloatVariable(hue * 6) ``` However, the following workaround works as expected: ``` hue_f = core.FloatVariable() hue_f += hue * 6 ```