BSK-E0029 error

Method defined inside a TypedDict class

TypedDict classes (PEP 589) are restricted to key declarations only. Defining methods (other than __init__ which is synthesised) is an error.

Real basilisk check output

What you see when BSK-E0029 fires on a minimal example:

basilisk check output reporting BSK-E0029 — Method defined inside a `TypedDict` class

How to handle it

Every rule is on by default — strict is the default, not a cage. You can dial BSK-E0029 down per-file or per-path from your editor or pyproject.toml, or fix the code so it type-checks. See the Type Safety rules and the complete diagnostic reference.

Canonical URL: https://www.basilisk-python.dev/errors/BSK-E0029