1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-19 02:17:38 +03:00

Added bool to valid set args

This commit is contained in:
A_D 2020-11-23 08:00:34 +02:00 committed by Athanasius
parent 63c3c55b9b
commit 82fc4b56f7

View File

@ -222,7 +222,7 @@ class AbstractConfig(abc.ABC):
raise NotImplementedError
@abstractmethod
def set(self, key: str, val: Union[int, str, List[str]]) -> None:
def set(self, key: str, val: Union[int, str, List[str], bool]) -> None:
"""Set the given key to the given data."""
raise NotImplementedError