class documentation

class ClassOptions(TypedDict): (source)

View In Hierarchy

Dictionary that may contain the following keys:

  • auto_attribs: bool|None

    True if this class uses the auto_attribs feature of the attrs library to automatically convert annotated fields into attributes. This is always True for dataclasses.

  • kw_only: bool

    True is this class uses kw_only feature.

  • init: bool|None

    False if attrs is not generating an __init__ method for this class.

  • auto_detect:bool

    For attrs only.

Class Variable auto_attribs Undocumented
Class Variable auto_detect Undocumented
Class Variable init Undocumented
Class Variable kw_only Undocumented

Undocumented

Undocumented

Undocumented

Undocumented