From 82fc4b56f7eff44de5d853922a66a294891ec4c9 Mon Sep 17 00:00:00 2001 From: A_D Date: Mon, 23 Nov 2020 08:00:34 +0200 Subject: [PATCH] Added bool to valid set args --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 87c30f3c..f88ba316 100644 --- a/config.py +++ b/config.py @@ -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