Skip to content

Commit c475f15

Browse files
committed
remove ABC from base
1 parent 64c45a1 commit c475f15

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/compas/base.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@
2121
__all__ = [
2222
'Base',
2323
]
24-
import abc
25-
ABC = abc.ABCMeta('ABC', (object,), {'__slots__': ()})
2624

2725

28-
class Base(ABC):
26+
# import abc
27+
# ABC = abc.ABCMeta('ABC', (object,), {'__slots__': ()})
28+
29+
30+
class Base(object):
2931
"""Abstract base class for all COMPAS objects.
3032
3133
Attributes

0 commit comments

Comments
 (0)