E-TE0013 — Expected a dict

Error Type

Type Error

Phase

type checking the model

Python exception

jijmodeling.TypeError

Message

Expected a dict type for `{expression}`, but got `{ty}`

Cause

A dict method — .keys(), .values(), or .items() (or the corresponding jm.keys/jm.values/jm.items functions) — was applied to an expression whose type is not a dict.

Fix

Apply the operation to an actual dict value, or declare the placeholder with a dict type if dictionary access was intended.