Remove unused imports and fix a small lint issue

This commit is contained in:
Roman Zeyde
2023-04-25 17:29:54 +03:00
parent 58bbb24fb4
commit 97416308ed
3 changed files with 30 additions and 43 deletions

View File

@@ -9,21 +9,17 @@ See these links for more details:
import argparse
import base64
import contextlib
import datetime
import io
import logging
import os
import sys
import traceback
import bech32
import pkg_resources
import semver
from cryptography.exceptions import InvalidTag
from cryptography.hazmat.primitives.ciphers.aead import ChaCha20Poly1305
from .. import device, server, util
from .. import device, util
from . import client
log = logging.getLogger(__name__)