Skip to content

Instantly share code, notes, and snippets.

@mypy-play
Created May 24, 2024 21:22
Show Gist options
  • Save mypy-play/22fd1083f377decc99e8754afdefdb45 to your computer and use it in GitHub Desktop.
Save mypy-play/22fd1083f377decc99e8754afdefdb45 to your computer and use it in GitHub Desktop.
Shared via mypy Playground
from typing import Protocol, final
@final
class Inter(Protocol):
x: int
def y(self) -> int:
...
@property
def z(self) -> int:
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment