overloads_definitions
error
Missing @overload implementation
When a function name is defined multiple times and every definition carries the @overload decorator, there is no concrete implementation body. Python's typing.overload protocol requires exactly one implementation function without @overload.
This rule fires once per overload group that lacks a plain implementation.
How to handle it
Every rule is on by default — strict is the default, not a cage. You can dial
overloads_definitions down per-file or per-path from your editor or
pyproject.toml, or fix the code
so it type-checks. See the Type System rules and
the complete diagnostic reference.
Canonical URL: https://www.basilisk-python.dev/errors/overloads_definitions