Fixed configuration typing

This commit is contained in:
Sven Heidemann 2023-10-12 21:14:49 +02:00
parent 41f974fe6e
commit 8ede2998fe
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ class Configuration(ConfigurationABC):
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
def create_console_argument(