Documentation
Open https://docs.python.org/3.12/tutorial/classes.html#odds-and-ends
There is a typo in the sample code. import dataclasses should be import dataclass.
from dataclasses import dataclasses
@dataclass
class Employee:
name: str
dept: str
salary: int
It was introduced in this PR.
Linked PRs
Documentation
Open https://docs.python.org/3.12/tutorial/classes.html#odds-and-ends
There is a typo in the sample code.
import dataclassesshould beimport dataclass.It was introduced in this PR.
Linked PRs