Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all: Enable ruff E401,E402 import lints. #858

Merged
merged 1 commit into from
May 17, 2024

Conversation

projectgus
Copy link
Contributor

Mostly small cleanups, and explicit disable for examples/tests which insert the current directory into the path before importing.

@projectgus projectgus requested a review from jimmo May 14, 2024 05:56
@dpgeorge
Copy link
Member

This is a bit of a change, making each import go on a separate line. But I guess we have to do that because we have committed to using ruff check for our style.

Luckily there is no difference in bytecode between import a, b and import a; import b.

@projectgus
Copy link
Contributor Author

This is a bit of a change, making each import go on a separate line. But I guess we have to do that because we have committed to using ruff check for our style.

I think we could reasonably commit to ignoring these, especially E402 (imports not at top ) because we need to add noqa for legitimate use case in quite a few places.

However, the current usage is pretty arbitrary - sometimes imports on the same line, sometimes imports on different lines, sometimes the same source file has both approaches for no apparent reason. So it is also nice to be consistent, IMO.

@stinos
Copy link

stinos commented May 15, 2024

Each import on its own line (or even going further: isort style sorted and grouped by type) just seems cleaner overall: more readable, nicer diffs, consistency.

@projectgus
Copy link
Contributor Author

projectgus commented May 15, 2024

All imports on one line (or even going further: isort style sorted and grouped) just seems cleaner overall: more readable, nicer diffs, consistency.

I don't exactly disagree, but I do want to point out that these individual small differences in style preference is why many projects just pick a formatter (like ruff) and have it auto-format the code. Instant consistency, minimal time overhead. No one gets their preferred individual style, but the code base all has the same style.

@dpgeorge
Copy link
Member

or even going further: isort style sorted and grouped

AFAIK, isort keeps separate modules on separate import lines??

nicer diffs

Aren't diffs smaller if imports are on separate lines?

@stinos
Copy link

stinos commented May 15, 2024

AFAIK, isort keeps separate modules on separate import lines??

Depends, it has a bit too much configuration options actually. Though I think ruff's isort implementation is betrer in that regard.

Aren't diffs smaller if imports are on separate lines?

Oops. I actually did mean to say 'all imports on their own line' ! Will edit original comment.

Mostly small cleanups to put each top-level import on its own line.  But
explicitly disable the lint for examples/tests which insert the current
directory into the path before importing.

Signed-off-by: Angus Gratton <[email protected]>
@dpgeorge dpgeorge merged commit 00fc3fd into micropython:master May 17, 2024
6 checks passed
@dpgeorge
Copy link
Member

OK, we're all on the same page now :)

Merged.

@projectgus projectgus deleted the ruff/imports branch May 21, 2024 23:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants