From 2718e223c66c2d16fb0b11f0f7be00f0b38116a5 Mon Sep 17 00:00:00 2001 From: magical Date: Wed, 10 Aug 2022 00:41:24 +0000 Subject: [PATCH] sort imports by length --- clients/nntp_client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/nntp_client.py b/clients/nntp_client.py index a51787a..aeb6845 100644 --- a/clients/nntp_client.py +++ b/clients/nntp_client.py @@ -1,12 +1,12 @@ +from collections import namedtuple from urllib.error import URLError import urllib.request as url -import nntplib from hashlib import sha256 +import email.utils +import nntplib import time import json import ssl -import email.utils -from collections import namedtuple import os