odoo/documentation#11990
Created by fw-bot
Merged
at 853583b0ce3f903aca4d6cc5699db7a71d1e57eb
Statuses:
- ci/documentation: (runtime 661s)
- ci/codeowner_coverage: (runtime 6s)
- label
- odoo-dev:18.0-18.0-coding_guidelines-alpha-order-fix-hamo-414877-fw
- head
- ee302386a2801ab40c4a76bff75e805ff769e308
- merged
- 4 months ago by Accounting, Harsh Modi (hamo)
odoo/documentation | |
---|---|
16.0 | #11983 |
17.0 | #11987 |
saas-17.2 | #11988 |
saas-17.4 | #11989 |
18.0 | #11990 |
saas-18.1 | #11991 |
saas-18.2 | |
saas-18.3 | |
master | #11992 |
[FW][FIX] coding_guidelines: fix the alphabetic orders for the import
In odoo, as we suggest everyone to follow an alphebetic order.
The translator(_
), ASCII is 95 and a
ASCII value is 97 which '_' < 'a', the translator should be defined first in the import before the api
not at the end of the import
This commits adds an example to import static class Command
with a Capital alphabet with a ASCII value of C
as 67 which will be before than the _
'C' < '_' < 'a'
This order of import should be followed while the import
Forward-Port-Of: #11983