From 8ba2c015abbdd7935d8edfb97b873d44f0add256 Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Mon, 13 Jun 2022 09:57:07 -0400 Subject: [PATCH] Sorted imports using iSort --- beetsplug/spotify.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/beetsplug/spotify.py b/beetsplug/spotify.py index ac680d99e..21e97ef2c 100644 --- a/beetsplug/spotify.py +++ b/beetsplug/spotify.py @@ -17,20 +17,19 @@ Spotify playlist construction. """ -import re -import json import base64 +import collections +import json +import re import time import webbrowser -import collections -import unidecode -import requests import confuse - +import requests +import unidecode from beets import ui from beets.autotag.hooks import AlbumInfo, TrackInfo -from beets.plugins import MetadataSourcePlugin, BeetsPlugin +from beets.plugins import BeetsPlugin, MetadataSourcePlugin DEFAULT_WAITING_TIME = 5