Bugfixes in unittests
This commit is contained in:
@@ -10,10 +10,6 @@ class ConfigurationBase(ABC):
|
||||
@abstractmethod
|
||||
def __init__(self): pass
|
||||
|
||||
@property
|
||||
@abstractmethod
|
||||
def config(self) -> dict[type, object]: pass
|
||||
|
||||
@abstractmethod
|
||||
def add_config_by_type(self, key_type: type, value: object): pass
|
||||
|
||||
|
||||
@@ -11,10 +11,6 @@ class Configuration(ConfigurationBase):
|
||||
|
||||
self._config: dict[type, object] = {}
|
||||
|
||||
@property
|
||||
def config(self):
|
||||
return self._config
|
||||
|
||||
def create(self): pass
|
||||
|
||||
def add_config_by_type(self, key_type: type, value: object):
|
||||
|
||||
Reference in New Issue
Block a user