Files
example-code-2e/05-record-like/dataclass/club_wrong.py
Luciano Ramalho 1df34f2945 ch05: new chapter
2020-02-19 00:11:45 -03:00

10 lines
141 B
Python

from dataclasses import dataclass
# tag::CLUBMEMBER[]
@dataclass
class ClubMember:
name: str
guests: list = []
# end::CLUBMEMBER[]