fix import order

This commit is contained in:
bvandercar-vt 2025-12-02 15:32:30 -07:00
parent 89f7c731bc
commit 0a797b5cad
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import logging
import re
import warnings
from collections import defaultdict
from typing import Optional, Union, List, Dict
from typing import Dict, List, Optional, Union
import requests

View File

@ -16,7 +16,7 @@ import urllib.parse as urllibparse
import warnings
import webbrowser
from http.server import BaseHTTPRequestHandler, HTTPServer
from typing import Optional, Union, Any
from typing import Any, Optional, Union
from urllib.parse import parse_qsl, urlparse
import requests
@ -24,7 +24,7 @@ import requests
from spotipy.cache_handler import CacheFileHandler, CacheHandler
from spotipy.exceptions import SpotifyOauthError, SpotifyStateError
from spotipy.util import (CLIENT_CREDS_ENV_VARS, REQUESTS_SESSION,
get_host_port, normalize_scope, ScopeArgType)
ScopeArgType, get_host_port, normalize_scope)
logger = logging.getLogger(__name__)

View File

@ -8,7 +8,7 @@ import logging
import os
import warnings
from types import TracebackType
from typing import Optional, Union, Tuple, List
from typing import List, Optional, Tuple, Union
import requests
import urllib3