Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR sorts the import statements at the top of each file in a particular order.
Big picture, imports from Python standard library are in the first group, imports from other packages are in the second group, and imports from stellarphot are in the third group.
Within each group, lines that start
import
committee first, then lines that startfrom ... import ...
. Within each of those groupings imports are arranged alphabetically.A check of isort has been turned on in ruff.
What this means in practice: You will need to pull in the latest main branch from feder-observatory to your local git clone before opening any new PRs. To do that, navigate in a terminal to your git clone and
@JuanCab @Tanner728 @AbigaleMoen @WatsonEmily11 @MDeRung2021