mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
fix import order
This commit is contained in:
parent
89f7c731bc
commit
0a797b5cad
@ -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
|
||||
|
||||
|
||||
@ -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__)
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user