Skip to content

Commit 5c077e0

Browse files
committed
Remove missing import and URL pattern
1 parent af92d2a commit 5c077e0

File tree

1 file changed

+6
-6
lines changed
  • server/api/views/text_extraction

1 file changed

+6
-6
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from django.urls import path
2-
from .views import RuleExtractionAPIView, RuleExtractionAPIOpenAIView
2+
from .views import RuleExtractionAPIOpenAIView
33

44

55
urlpatterns = [
6-
7-
path('v1/api/rule_extraction', RuleExtractionAPIView.as_view(),
8-
name='rule_extraction'),
9-
path('v1/api/rule_extraction_openai', RuleExtractionAPIOpenAIView.as_view(),
10-
name='rule_extraction_openai')
6+
path(
7+
"v1/api/rule_extraction_openai",
8+
RuleExtractionAPIOpenAIView.as_view(),
9+
name="rule_extraction_openai",
10+
)
1111
]

0 commit comments

Comments
 (0)