Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
uoa-noel committed Jul 8, 2024
1 parent 4e0f821 commit 8b1aefd
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions tardis/apps/idw_download/user_menu_modifiers.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
from django.urls import reverse
import logging

logger = logging.getLogger(__name__)

from tardis.tardis_portal.templatetags.approved_user_tags import (
check_if_user_not_approved,
)
from django.urls import reverse

from tardis.apps.idw_download.views.idw import IDWIndexView
logger = logging.getLogger(__name__)


def add_idw_menu_item(request, user_menu):
Expand All @@ -25,7 +20,7 @@ def add_idw_menu_item(request, user_menu):
idw_menu_item = {
"url": reverse("tardis.apps.idw_download:index"),
"icon": "fa fa-magic",
"label": "Get Instrument Data Wizard"
"label": "Get Instrument Data Wizard",
}
# Find the index of "Manage Account" item so we can add item after it.
# If we can't find it, just insert it at the beginning
Expand Down

0 comments on commit 8b1aefd

Please sign in to comment.