summaryrefslogtreecommitdiff
path: root/poezio/plugin_e2ee.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2022-08-21 17:34:07 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2022-08-21 20:57:26 +0200
commitf3a751b3953032a8eb73af96a725cef902bde020 (patch)
tree7eb9173caaec479ab124be24ed605814ae5d23b0 /poezio/plugin_e2ee.py
parent940f5e0c8a695048e6b7dfd3dd13e49e0c3476a5 (diff)
downloadpoezio-f3a751b3953032a8eb73af96a725cef902bde020.tar.gz
poezio-f3a751b3953032a8eb73af96a725cef902bde020.tar.bz2
poezio-f3a751b3953032a8eb73af96a725cef902bde020.tar.xz
poezio-f3a751b3953032a8eb73af96a725cef902bde020.zip
mypy: Type some more things
This lets us pass under mypy 0.971, and is yet another step towards mypyc compatibility perhaps.
Diffstat (limited to 'poezio/plugin_e2ee.py')
-rw-r--r--poezio/plugin_e2ee.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py
index 3f7edd16..49f7b067 100644
--- a/poezio/plugin_e2ee.py
+++ b/poezio/plugin_e2ee.py
@@ -234,7 +234,8 @@ class E2EEPlugin(BasePlugin):
for section in config.sections():
value = config.getstr('encryption', section=section)
if value and value == self.encryption_short_name:
- self._enabled_tabs[section] = self.encrypt
+ section_jid = JID(section)
+ self._enabled_tabs[section_jid] = self.encrypt
def cleanup(self):
ConversationTab.remove_information_element(self.encryption_short_name)