From 3681856d54f657226ffc3e88b305fc69377d56f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Tue, 1 Mar 2022 22:49:24 +0100 Subject: [PATCH] Please linter, change import order MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- slixmpp_omemo/__init__.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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