Skip to content

Commit

Permalink
chore(lint): remove unused imports to fix pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanttV committed Jan 27, 2025
1 parent ea87002 commit 2315ac8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions cms/djangoapps/contentstore/rest_api/v2/views/home.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
"""HomePageCoursesViewV2 APIView for getting content available to the logged in user."""

import edx_api_doc_tools as apidocs
from collections import OrderedDict
from django.conf import settings
from django.http import HttpResponseNotFound
from rest_framework.response import Response
from rest_framework.request import Request
from rest_framework.views import APIView
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
"""
Unit tests for home page view.
"""

from collections import OrderedDict
from datetime import datetime, timedelta
from unittest.mock import patch

import ddt
import pytz
from django.conf import settings
from django.test import override_settings
from django.urls import reverse
from rest_framework import status

Expand Down

0 comments on commit 2315ac8

Please sign in to comment.