Restyle Add edit playlist modal (#26)

* Restyled by autopep8

* Restyled by black

* Restyled by isort

* Restyled by reorder-python-imports

* Restyled by yapf

Co-authored-by: Restyled.io <commits@restyled.io>
This commit is contained in:
restyled-io[bot]
2022-04-08 06:55:00 +03:00
committed by GitHub
parent 6cd982c8ee
commit aa79214a50
6 changed files with 38 additions and 26 deletions
+6 -5
View File
@@ -1,13 +1,14 @@
"""
Contains all the playlist routes.
"""
from flask import Blueprint, request
from app import instances, api
from app.lib import playlistlib
from app import models
from app import api
from app import exceptions
from app import instances
from app import models
from app import serializer
from app.lib import playlistlib
from flask import Blueprint
from flask import request
playlist_bp = Blueprint("playlist", __name__, url_prefix="/")