chore(centurion_feature_flag): correct pylint error W0611:unused-import

ref: #765
This commit is contained in:
2025-05-18 05:48:45 +09:30
parent 69d915079b
commit 67b9a5e70d
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
from django.urls.conf import (
from django.urls.conf import ( # pylint: disable=W0611:unused-import
_path as _django_path,
include, # pylint: disable=W0611:unused-import
include,
partial,
RegexPattern as DjangoRegexPattern,
RoutePattern as DjangoRoutePattern,

View File

@ -1,4 +1,4 @@
from django.shortcuts import Http404, HttpResponse #, redirect, render
from django.shortcuts import Http404
from django.views.generic import View