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
+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="/")