Skip to content

Instantly share code, notes, and snippets.

@mypy-play
Created May 2, 2024 15:55
Show Gist options
  • Save mypy-play/3275a120fc144c64a3dd0a37d375be5c to your computer and use it in GitHub Desktop.
Save mypy-play/3275a120fc144c64a3dd0a37d375be5c to your computer and use it in GitHub Desktop.
Shared via mypy Playground
from typing import Generic, TypeVar
T = TypeVar("T", bound=int | None)
class C(Generic[T]):
def __init__(self, x: T = None):
self.x = x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment