From 5cdafd580f52e5314f855f76e3c39a9bef7d19a3 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 28 Jul 2024 20:18:12 -0700 Subject: [PATCH] don't need ABCMeta here --- masque/traits/copyable.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/masque/traits/copyable.py b/masque/traits/copyable.py index 91af84b..c652aff 100644 --- a/masque/traits/copyable.py +++ b/masque/traits/copyable.py @@ -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() """