Compare commits

...

1 Commits

Author SHA1 Message Date
Harsh Modi
38e39a4111 [FIX] coding_guidelines: Add comment to indicate ASCII-based ordering
Following the fix - 92c7099a0e
Adding a comment to explicitly indicate that the import is ordered
alphabetically based on ASCII values.
2025-04-18 17:28:41 +05:30

View File

@@ -425,7 +425,7 @@ Inside these 3 groups, the imported lines are alphabetically sorted.
from datetime import datetime
# 2 : imports of odoo
import odoo
from odoo import Command, _, api, fields, models # alphabetically ordered
from odoo import Command, _, api, fields, models # ASCIIbetically ordered
from odoo.tools.safe_eval import safe_eval as eval
# 3 : imports from odoo addons
from odoo.addons.web.controllers.main import login_redirect