We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d779acc commit e41796aCopy full SHA for e41796a
elementary/messages/messaging_integrations/mapped.py
@@ -1,3 +1,5 @@
1
+from typing import Dict
2
+
3
from elementary.messages.message_body import MessageBody
4
from elementary.messages.messaging_integrations.base_messaging_integration import (
5
BaseMessagingIntegration,
@@ -11,7 +13,7 @@
11
13
12
14
class MappedMessagingIntegration(BaseMessagingIntegration[str, MessageContextType]):
15
def __init__(
- self, mapping: dict[str, BaseMessagingIntegration[None, MessageContextType]]
16
+ self, mapping: Dict[str, BaseMessagingIntegration[None, MessageContextType]]
17
):
18
self._mapping = mapping
19
0 commit comments