mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-06 01:18:52 -06:00
Remove EnforceOverrides
This commit is contained in:
@@ -6,8 +6,6 @@ import logging
|
|||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
from typing import Any, List, Optional, Hashable, TYPE_CHECKING, Dict
|
from typing import Any, List, Optional, Hashable, TYPE_CHECKING, Dict
|
||||||
|
|
||||||
from overrides import EnforceOverrides
|
|
||||||
|
|
||||||
from miplearn.features import Sample
|
from miplearn.features import Sample
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
@@ -17,7 +15,7 @@ if TYPE_CHECKING:
|
|||||||
|
|
||||||
|
|
||||||
# noinspection PyMethodMayBeStatic
|
# noinspection PyMethodMayBeStatic
|
||||||
class Instance(ABC, EnforceOverrides):
|
class Instance(ABC):
|
||||||
"""
|
"""
|
||||||
Abstract class holding all the data necessary to generate a concrete model of the
|
Abstract class holding all the data necessary to generate a concrete model of the
|
||||||
proble.
|
proble.
|
||||||
|
|||||||
Reference in New Issue
Block a user