summaryrefslogtreecommitdiff
path: root/searx/shared/shared_simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/shared/shared_simple.py')
-rw-r--r--searx/shared/shared_simple.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/searx/shared/shared_simple.py b/searx/shared/shared_simple.py
index 0bf13a2a6..2b9d4c2da 100644
--- a/searx/shared/shared_simple.py
+++ b/searx/shared/shared_simple.py
@@ -1,6 +1,7 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
import threading
+from typing import Optional
from . import shared_abstract
@@ -12,16 +13,16 @@ class SimpleSharedDict(shared_abstract.SharedDict):
def __init__(self):
self.d = {}
- def get_int(self, key):
+ def get_int(self, key: str) -> Optional[int]:
return self.d.get(key, None)
- def set_int(self, key, value):
+ def set_int(self, key: str, value: int):
self.d[key] = value
- def get_str(self, key):
+ def get_str(self, key: str) -> Optional[str]:
return self.d.get(key, None)
- def set_str(self, key, value):
+ def set_str(self, key: str, value: str):
self.d[key] = value