Remove EnforceOverrides

This commit is contained in:
2021-05-10 13:31:43 -05:00
parent 17d4bc6ab9
commit 8e61b7be5f
4 changed files with 5 additions and 11 deletions

View File

@@ -6,8 +6,6 @@ import logging
from abc import ABC, abstractmethod
from typing import Any, List, Optional, Hashable, TYPE_CHECKING
from overrides import EnforceOverrides
from miplearn.features import Sample
from miplearn.types import VariableName, Category
@@ -18,7 +16,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.