Skip to content

Instantly share code, notes, and snippets.

@gibizer
Created January 30, 2020 09:18
Show Gist options
  • Save gibizer/af7fb55e2f34708c400d96bb9a65368d to your computer and use it in GitHub Desktop.
Save gibizer/af7fb55e2f34708c400d96bb9a65368d to your computer and use it in GitHub Desktop.
import dataclasses
@dataclasses.dataclass
class Animal:
name: str
likeable: bool = True
class Cat(Animal):
color: str
garfield = Cat(name="garfield", color="ginger")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment