diff --git a/slixmpp_omemo/__init__.py b/slixmpp_omemo/__init__.py index 0d21a35..b3fb4f4 100644 --- a/slixmpp_omemo/__init__.py +++ b/slixmpp_omemo/__init__.py @@ -13,15 +13,16 @@ import logging from typing import Any, Dict, List, Optional, Set, Tuple, Union -# Not available in Python 3.7, and slixmpp already imports the right things -# for me -from slixmpp.types import TypedDict -from functools import reduce - import os import json import base64 import asyncio +from functools import reduce + +# Not available in Python 3.7, and slixmpp already imports the right things +# for me +from slixmpp.types import TypedDict + from slixmpp.plugins.xep_0060.stanza import Items, EventItems from slixmpp.plugins.xep_0004 import Form from slixmpp.plugins.base import BasePlugin, register_plugin