puppygirl-py/puppygirl/clonable.py
2025-10-06 16:11:34 -04:00

7 lines
155 B
Python

from copy import copy
from typing import TYPE_CHECKING, Protocol, Self
class Clonable[T = Self](Protocol):
def clone(self) -> T:
return copy(self)