mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
Restyled by reorder-python-imports
This commit is contained in:
committed by
Mungai Geoffrey
parent
3a699365c8
commit
dc683e6314
@@ -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="/")
|
||||
|
||||
|
||||
@@ -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="/")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user