Skip to content

Commit

Permalink
Fixed testing
Browse files Browse the repository at this point in the history
  • Loading branch information
spellew committed Aug 8, 2019
1 parent 8bfae4f commit b05cc1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from critiquebrainz.frontend.external.musicbrainz_db.label import get_label_by_id
from critiquebrainz.frontend.external.musicbrainz_db.artist import get_artist_by_id


def get_multiple_entities(entities):
"""Fetch multiple entities using their MBIDs.
Expand Down
13 changes: 7 additions & 6 deletions critiquebrainz/frontend/views/label.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

from flask import Blueprint, render_template, request
from flask_login import current_user
from flask_babel import gettext
from flask import Blueprint, render_template
# from flask import request
# from flask_login import current_user
from werkzeug.exceptions import NotFound
from flask_babel import gettext
import critiquebrainz.frontend.external.musicbrainz_db.label as mb_label
import critiquebrainz.frontend.external.musicbrainz_db.exceptions as mb_exceptions
import critiquebrainz.db.review as db_review
from critiquebrainz.frontend.forms.rate import RatingEditForm
from critiquebrainz.frontend.views import get_avg_rating
# import critiquebrainz.db.review as db_review
# from critiquebrainz.frontend.forms.rate import RatingEditForm
# from critiquebrainz.frontend.views import get_avg_rating


label_bp = Blueprint('label', __name__)
Expand Down

0 comments on commit b05cc1c

Please sign in to comment.