summaryrefslogtreecommitdiff
path: root/thread_utils.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-02-01 20:14:13 -0800
committerScott <[email protected]>2022-02-01 20:14:13 -0800
commit6cf1d61b80d02937dbca9025c1922568d42a8c73 (patch)
tree70a14b9fbb71ac3cc4c81d489da04b131af61e1c /thread_utils.py
parent9eba12cba5641d6a0b988038694cbc2dd52800c5 (diff)
More mypy cleanup... ugh.
Diffstat (limited to 'thread_utils.py')
-rw-r--r--thread_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_utils.py b/thread_utils.py
index 51078a4..6035b09 100644
--- a/thread_utils.py
+++ b/thread_utils.py
@@ -110,7 +110,7 @@ def background_thread(
return inner_wrapper
if _funct is None:
- return wrapper
+ return wrapper # type: ignore
else:
return wrapper(_funct)