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
+5 -3
View File
@@ -1,13 +1,15 @@
"""
Contains all the folder routes.
"""
import datetime
import os
from app import api, helpers, settings
from app import api
from app import helpers
from app import settings
from app.lib import folderslib
from flask import Blueprint, request
from flask import Blueprint
from flask import request
folder_bp = Blueprint("folder", __name__, url_prefix="/")
+4 -3
View File
@@ -1,9 +1,10 @@
"""
Contains all the track routes.
"""
from app import api, instances
from flask import Blueprint, send_file
from app import api
from app import instances
from flask import Blueprint
from flask import send_file
track_bp = Blueprint("track", __name__, url_prefix="/")