aboutsummaryrefslogtreecommitdiff
path: root/src/IRCUser.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-31 15:12:46 +0000
committerGravatar jesopo2018-10-31 15:12:46 +0000
commita4d8d1f85557ced37ab41038e9fbd25d6332eebf (patch)
treeee2886a839a32ac54cd64a0447044af6a19f7d08 /src/IRCUser.py
parentMove setting BitBotFormatter's converter (to time.gmtime) to class definition as (diff)
signature
Fix some non-explicit None returns, add type hints to important variables
Diffstat (limited to 'src/IRCUser.py')
-rw-r--r--src/IRCUser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCUser.py b/src/IRCUser.py
index 7d7721b4..03543d5f 100644
--- a/src/IRCUser.py
+++ b/src/IRCUser.py
@@ -11,7 +11,7 @@ class User(IRCObject.Object):
self.hostname = None
self.realname = None
self.bot = bot
- self.channels = set([])
+ self.channels = set([]) # type: typing.Set[IRCChannel.Channel]
self.identified_account = None
self.identified_account_override = None