ch01-12: clean up by @eumiro

This commit is contained in:
Luciano Ramalho
2021-02-14 20:28:07 -03:00
parent 584a7f21ca
commit 03ace4f4ae
33 changed files with 1383 additions and 86 deletions

View File

@@ -30,13 +30,13 @@ To fix, ``leo2`` must be created with an explicit ``handle``::
# tag::HACKERCLUB[]
from dataclasses import dataclass
from typing import ClassVar, Set
from typing import ClassVar
from club import ClubMember
@dataclass
class HackerClubMember(ClubMember):
all_handles: ClassVar[Set[str]] = set()
all_handles: ClassVar[set[str]] = set()
handle: str = ''