To run the code quality checks, run the following command:
flake8 expediagroup/ generator/
- You can run
isort expediagroup/ generator/
to automatically fix import order issues.flake8
will reportisort
related issues asI
errors.
- You can run
black expediagroup/ generator/
to automatically fix formatting issues.flake8
will reportblack
related issues asBLK
errors.
- You may fix other issues manually.