Skip to content

Commit f501379

Browse files
Melhora imports
1 parent 3bf5c7c commit f501379

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

markup_doc/labeling_utils.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1-
import requests
1+
# Standard library imports
22
import json
33
import re
4+
import requests
5+
46
from lxml import etree
5-
from .choices import order_labels
7+
8+
# Third-party imports
9+
from django.contrib.auth import get_user_model
610
from rest_framework_simplejwt.tokens import RefreshToken
11+
12+
# Local application imports
713
from model_ai.models import LlamaModel
14+
from .choices import order_labels
15+
816

917

1018
def getLLM():
@@ -142,8 +150,6 @@ def create_special_content_object(item, stream_data_body, counts):
142150
return obj, counts
143151

144152

145-
from django.contrib.auth import get_user_model
146-
147153
User = get_user_model()
148154

149155

0 commit comments

Comments
 (0)