Compare commits

..

2 Commits

Author SHA1 Message Date
697c585ebd refine package logging 2025-02-14 14:45:45 +02:00
fe1d518171 type: remove unused ignore directive 2025-02-06 12:33:48 +02:00

View File

@ -57,7 +57,7 @@ class ConfigurationMultiDict(dict[str, Any]):
OptionError: if the key already exists in the dictionary, but not a single value list or a string
"""
match self.get(key):
case [current_value] | str(current_value): # type: ignore[misc]
case [current_value] | str(current_value):
value = f"{current_value} {value}"
case None:
pass