don't need ABCMeta here

This commit is contained in:
Jan Petykiewicz 2024-07-28 20:18:12 -07:00
parent 2cf187fdb8
commit 5cdafd580f

View File

@ -1,9 +1,8 @@
from typing import Self
from abc import ABCMeta
import copy
class Copyable(metaclass=ABCMeta):
class Copyable:
"""
Trait class which adds .copy() and .deepcopy()
"""