Restyled by reorder-python-imports

This commit is contained in:
Restyled.io
2022-04-03 10:45:56 +00:00
committed by Mungai Geoffrey
parent 3a699365c8
commit dc683e6314
7 changed files with 26 additions and 17 deletions
+3 -2
View File
@@ -1,12 +1,13 @@
"""
This library contains all the functions related to albums.
"""
import urllib
from pprint import pprint
from typing import List
from app import api, functions, models
from app import api
from app import functions
from app import models
from app.lib import trackslib
+3 -2
View File
@@ -1,11 +1,12 @@
"""
This library contains all the functions related to tracks.
"""
import os
from typing import List
from app import api, instances, models
from app import api
from app import instances
from app import models
from app.helpers import remove_duplicates
from app.lib import albumslib
from progress.bar import Bar