Inspectopedia Help

Invalid definition of 'typing.NamedTuple'

Reports invalid definition of a typing.NamedTuple.

Example:

import typing class FullName(typing.NamedTuple): first: str last: str = "" middle: str

As a fix, place the field with the default value after the fields without default values:

import typing class FullName(typing.NamedTuple): first: str middle: str last: str = ""

Inspection Details

By default bundled with:

DataSpell 2024.1, IntelliJ IDEA 2024.1, PyCharm 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin:

Python Community Edition, 241.SNAPSHOT

Last modified: 29 April 2024