Fixed configuration typing

This commit is contained in:
Sven Heidemann 2023-10-12 21:14:49 +02:00
parent 41f974fe6e
commit 8ede2998fe

View File

@ -296,7 +296,7 @@ class Configuration(ConfigurationABC):
self.add_configuration(sub, configuration) self.add_configuration(sub, configuration)
def add_configuration(self, key_type: Type[T], value: any): def add_configuration(self, key_type: T, value: any):
self._config[key_type] = value self._config[key_type] = value
def create_console_argument( def create_console_argument(