1fromdataclassesimportdataclass 2fromtypingimportOptional 3 4@dataclass 5classParty: 6name:str 7"""The name of the party.""" 8 9advocate:Optional[str]=None10"""The advocate representing the party, if any."""
@dataclass
classParty:
5@dataclass 6classParty: 7name:str 8"""The name of the party.""" 910advocate:Optional[str]=None11"""The advocate representing the party, if any."""