Looking at the Google Python Style Guide under 3.13 it says order of imports should be:
- Python Future Imports
- Python Standard imports
- Third Party module or package import
- Code repository sub-package imports
What exactly is Code repository sub-package imports
? If there is a library written by another team in the company is that Third Party or is it Code Repository?