Please linter, change import order
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
c936703941
commit
3681856d54
1 changed files with 6 additions and 5 deletions
|
@ -13,15 +13,16 @@ import logging
|
||||||
|
|
||||||
from typing import Any, Dict, List, Optional, Set, Tuple, Union
|
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 os
|
||||||
import json
|
import json
|
||||||
import base64
|
import base64
|
||||||
import asyncio
|
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_0060.stanza import Items, EventItems
|
||||||
from slixmpp.plugins.xep_0004 import Form
|
from slixmpp.plugins.xep_0004 import Form
|
||||||
from slixmpp.plugins.base import BasePlugin, register_plugin
|
from slixmpp.plugins.base import BasePlugin, register_plugin
|
||||||
|
|
Loading…
Reference in a new issue