This paste expires on 2023-06-20 06:23:57.528251. Repaste, or download this paste. . Pasted through web.

from dataclasses import dataclass, field
@dataclass
class D:
    z: int = 10
    # why no mypy warning on incompatible type assignment?
    # i want to achieve something similiar like this for my custom `dataclass`-like class.`
    t: int = field(default=0)
Filename: None. Size: 273b. View raw, , hex, or download this file.