summaryrefslogtreecommitdiff
path: root/decorator_utils.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-02-02 09:14:12 -0800
committerScott <[email protected]>2022-02-02 09:14:12 -0800
commita4bf4d05230474ad14243d67ac7f8c938f670e58 (patch)
tree673fb8bea628ce51b942d93ba5df433732c7384e /decorator_utils.py
parent971d4ba141459f78d10d5770b9459d1ead7d49a0 (diff)
More type annotations.
Diffstat (limited to 'decorator_utils.py')
-rw-r--r--decorator_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/decorator_utils.py b/decorator_utils.py
index a956a21..cd69639 100644
--- a/decorator_utils.py
+++ b/decorator_utils.py
@@ -223,7 +223,7 @@ def debug_count_calls(func: Callable) -> Callable:
logger.info(msg)
return func(*args, **kwargs)
- wrapper_debug_count_calls.num_calls = 0
+ wrapper_debug_count_calls.num_calls = 0 # type: ignore
return wrapper_debug_count_calls
@@ -366,7 +366,7 @@ def memoized(func: Callable) -> Callable:
logger.debug(f"Returning memoized value for {func.__name__}")
return wrapper_memoized.cache[cache_key]
- wrapper_memoized.cache = dict()
+ wrapper_memoized.cache = dict() # type: ignore
return wrapper_memoized