Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

isort: fix isort problems for two files #807

Merged
merged 1 commit into from
Feb 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions rero_ils/modules/loans/transitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
get_pending_loans_by_doc_pid
from invenio_circulation.proxies import current_circulation
from invenio_circulation.transitions.base import Transition
from invenio_circulation.transitions.transitions import _ensure_same_location,\
ensure_same_item
from invenio_circulation.transitions.transitions import \
_ensure_same_location as _ensure_same_location
from invenio_circulation.transitions.transitions import ensure_same_item
from invenio_db import db

from ..documents.api import Document
Expand Down
1 change: 1 addition & 0 deletions tests/api/test_circ_bug.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

from invenio_accounts.testutils import login_user_via_session
from utils import postdata

from rero_ils.modules.loans.api import LoanAction


Expand Down