diff --git a/Lib/enum.py b/Lib/enum.py index b9811fe9e67..1df38a6f7e5 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -1024,9 +1024,6 @@ class EnumType(type): """ if not bases: return object, Enum - - mcls._check_for_existing_members_(class_name, bases) - # ensure final parent class is an Enum derivative, find any concrete # data type, and check that Enum has no members first_enum = bases[-1]