errors.fyi community error code reference
E706
vim

List and dict are mutable

A List or Dictionary was used in a context requiring an immutable value, such as a constant expression. Use a copy with copy() or deepcopy() to obtain a separate value.

References

โ† all namespaces for E706