example-code-2e/05-data-classes/dataclass/club_wrong.py

9 lines
140 B
Python
Raw Normal View History

2020-02-19 04:11:45 +01:00
from dataclasses import dataclass
# tag::CLUBMEMBER[]
@dataclass
class ClubMember:
name: str
guests: list = []
# end::CLUBMEMBER[]