Skip to content

Instantly share code, notes, and snippets.

@gidgid
Created December 13, 2020 19:57
Show Gist options
  • Save gidgid/12c09680ebc897e3a0fd079af42fde99 to your computer and use it in GitHub Desktop.
Save gidgid/12c09680ebc897e3a0fd079af42fde99 to your computer and use it in GitHub Desktop.
from dataclasses import dataclass
class State:
"""Represents a possible Circuit Breaker state"""
@dataclass
class Open(State):
pass
@dataclass
class Closed(State):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment