LLNL / scraper

Python library for getting metadata from source code hosting tools
MIT License
49 stars 23 forks source link

Add the `isort` tool to the test suite #65

Closed mcdonnnj closed 2 years ago

mcdonnnj commented 2 years ago

This pull request adds the isort tool to the test suite for the project. This will ensure that imports in the project are automatically sorted and there is a clear separation between different types of imports (standard library/third-party/internal). This would just improve the maintainability of the code base by keep imports organized and ensuring there is no overlap or duplication.

IanLee1521 commented 2 years ago

This looks great, thanks @mcdonnnj !

I haven't used isort before, good to know it's there! In more recent years, I've adopted this styling, but clearly didn't go back to everything to update the various imports.