ci: Update and configure isort, and make it happy

This commit is contained in:
2023-11-14 05:00:03 +01:00
parent d1a0510734
commit 8f5d355ea0
12 changed files with 44 additions and 39 deletions

View File

@@ -20,22 +20,20 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from asyncio import ensure_future, gather, get_event_loop
import base64
import hashlib
import logging
import struct
import time
from asyncio import get_event_loop, gather, ensure_future
from colorlog import ColoredFormatter
from secret_handshake.network import SHSClient
from ssb.muxrpc import MuxRPCAPI, MuxRPCAPIException
from ssb.packet_stream import PacketStream, PSMessageType
from ssb.util import load_ssb_secret
import hashlib
import base64
api = MuxRPCAPI()

View File

@@ -20,14 +20,14 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from asyncio import ensure_future, gather, get_event_loop
import logging
from asyncio import gather, get_event_loop, ensure_future
from colorlog import ColoredFormatter
from secret_handshake import SHSServer
from ssb.packet_stream import PacketStream
from ssb.muxrpc import MuxRPCAPI
from ssb.packet_stream import PacketStream
from ssb.util import load_ssb_secret
api = MuxRPCAPI()