Restyled by isort

This commit is contained in:
Restyled.io
2022-04-03 10:45:55 +00:00
committed by Mungai Geoffrey
parent 076f42b81f
commit 3a699365c8
6 changed files with 20 additions and 26 deletions
+2 -4
View File
@@ -2,14 +2,12 @@
Contains all the folder routes.
"""
from app import helpers
import datetime
import os
from flask import Blueprint, request
from app import api
from app import settings
from app import api, helpers, settings
from app.lib import folderslib
from flask import Blueprint, request
folder_bp = Blueprint("folder", __name__, url_prefix="/")
+1 -2
View File
@@ -2,10 +2,9 @@
Contains all the track routes.
"""
from app import api, instances
from flask import Blueprint, send_file
from app import instances, api
track_bp = Blueprint("track", __name__, url_prefix="/")