aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2018-12-02 10:08:58 +0000
committerGravatar jesopo2018-12-02 10:08:58 +0000
commit50ced296d12d23e2511e9b8073991e01a5fe0ae4 (patch)
treea593e08342bb5291674b42918b8fcdaeb390c0c1 /src
parentClarify/fix type hints throughout EventManager.py (diff)
signature
Clarify func_queue type (IRCBot.py)
Diffstat (limited to 'src')
-rw-r--r--src/IRCBot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCBot.py b/src/IRCBot.py
index 2642f014..e2c5f899 100644
--- a/src/IRCBot.py
+++ b/src/IRCBot.py
@@ -43,7 +43,7 @@ class Bot(object):
self.lock.acquire()
- func_queue = queue.Queue(1)
+ func_queue = queue.Queue(1) # type: queue.Queue[str]
self._trigger_functions.append([func, func_queue])
self.lock.release()