优化wrong-import-order问题

This commit is contained in:
mgw
2023-11-20 12:42:48 +08:00
parent d2899fe38e
commit a606cbfc6d
4 changed files with 19 additions and 21 deletions

View File

@@ -1,10 +1,10 @@
from odoo import api, fields, models, SUPERUSER_ID, _
from odoo.exceptions import ValidationError
from collections import defaultdict, namedtuple
from datetime import datetime
import logging
from odoo.exceptions import UserError
import requests
from odoo import api, fields, models, SUPERUSER_ID, _
from odoo.exceptions import UserError
from odoo.exceptions import ValidationError
from collections import defaultdict, namedtuple
_logger = logging.getLogger(__name__)