puppygirl-py/puppygirl/clonable.py
2025-10-06 18:03:06 -04:00

7 lines
140 B
Python

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