OCA / odoo-module-migrator

Python library to migrate odoo base code from a version to another
GNU Affero General Public License v3.0
123 stars 112 forks source link

[IMP] When migrating code, automatically apply PEP 3135 #77

Open anothingguy opened 10 months ago

anothingguy commented 10 months ago

automatically apply PEP 3135

Example: super(TestHrEmployee, self).setUp() -> super().setUp()

anothingguy commented 10 months ago

Thanks !

Could you add tests ?

yes, sure

sbidoul commented 10 months ago

I would suggest to delegate this kind of standard python stuff to common python tools such as pyupgrade or ruff (rule UP008).