Remove EnforceOverrides

This commit is contained in:
2021-06-29 09:05:14 -05:00
parent 438859e493
commit 8118ab4110

View File

@@ -6,8 +6,6 @@ import logging
from abc import ABC, abstractmethod
from typing import Any, List, Optional, Hashable, TYPE_CHECKING, Dict
from overrides import EnforceOverrides
from miplearn.features import Sample
logger = logging.getLogger(__name__)
@@ -17,7 +15,7 @@ if TYPE_CHECKING:
# noinspection PyMethodMayBeStatic
class Instance(ABC, EnforceOverrides):
class Instance(ABC):
"""
Abstract class holding all the data necessary to generate a concrete model of the
proble.