Adjust import order

This commit is contained in:
Feng Wang 2024-12-24 21:48:51 +08:00
parent 626460e156
commit a69aa42ce7
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ import secrets
import socket import socket
import struct import struct
import threading import threading
from typing import Callable, Optional, final, Coroutine, Any from typing import Any, Callable, Coroutine, Optional, final
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from cryptography.hazmat.primitives import padding from cryptography.hazmat.primitives import padding
from cryptography.hazmat.backends import default_backend from cryptography.hazmat.backends import default_backend

View File

@ -52,7 +52,7 @@ import socket
from dataclasses import dataclass from dataclasses import dataclass
from enum import Enum, auto from enum import Enum, auto
import subprocess import subprocess
from typing import Callable, Optional, Coroutine from typing import Callable, Coroutine, Optional
import psutil import psutil
import ipaddress import ipaddress