From 597da1f5a139815264811bfaed6e90412ac20c1b Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Fri, 16 Apr 2021 23:51:49 +0000 Subject: [PATCH] Remove unused imports --- librespot/core/ApResolver.py | 1 - librespot/crypto/DiffieHellman.py | 2 -- librespot/standard/DataInputStream.py | 1 - 3 files changed, 4 deletions(-) diff --git a/librespot/core/ApResolver.py b/librespot/core/ApResolver.py index 733eaa1..119a886 100644 --- a/librespot/core/ApResolver.py +++ b/librespot/core/ApResolver.py @@ -1,4 +1,3 @@ -import queue import random import requests diff --git a/librespot/crypto/DiffieHellman.py b/librespot/crypto/DiffieHellman.py index 16fe59a..6e2442e 100644 --- a/librespot/crypto/DiffieHellman.py +++ b/librespot/crypto/DiffieHellman.py @@ -1,7 +1,5 @@ -from binascii import unhexlify from librespot.common.Utils import Utils import os -import struct class DiffieHellman: diff --git a/librespot/standard/DataInputStream.py b/librespot/standard/DataInputStream.py index aaffe89..857bbb7 100644 --- a/librespot/standard/DataInputStream.py +++ b/librespot/standard/DataInputStream.py @@ -1,6 +1,5 @@ from librespot.standard.DataInput import DataInput from librespot.standard.FilterInputStream import FilterInputStream -from librespot.standard.InputStream import InputStream class DataInputStream(FilterInputStream, DataInput):