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

Apply ruff rules to Python scripts #198

Merged
merged 24 commits into from
Jan 22, 2025
Merged

Conversation

DimitriPapadopoulos
Copy link
Contributor

I'm assuming all scripts are Python 3 scripts, except this one:
specification/src/main/resources/transforms/util/write-transforms.py

The latter has been marked as a Python 2 script.

Copy link
Member

@sbesson sbesson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From an initial code review, I don't see concerning changes. Given the modifications to the code generation utilities, we'll need to confirm that the generated classes are unmodified by this change for all supported Python versions.

Several contributions are made against files of a package which has just been deprecated and are scheduled for removal in an upcoming release (setup.py, ome_model/experimental.py, test/unit/*) - see #194 for more details. Given the scope of this work, we might pioritize the clean up of these classes first and update you when this is completed and conflicts should be resolved so that only changes against xsd-fu utility are evaluated

@sbesson
Copy link
Member

sbesson commented Jan 17, 2025

@DimitriPapadopoulos with #206 merged, can you fix the conflicts on this PR by merging origin/master into your branch?

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
F401 imported but unused

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
E402 Module level import not at top of file

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
E703 Statement ends with an unnecessary semicolon

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
W291 Trailing whitespace

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
W293 Blank line contains whitespace

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
W391 Too many newlines at end of file

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
C414 Unnecessary `list()` call within `sorted()`

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
ISC002 Implicitly concatenated string literals over multiple lines

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
PIE790 Unnecessary `pass` statement

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
PIE810 Call `startswith` once with a `tuple`

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
SIM103 Return the condition directly

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
bool() is not required as the type of expressions is already bool

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
SIM110 Use `return any()` instead of `for` loop

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
SIM118 Use `key in dict` instead of `key in dict.keys()`

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
SIM401 Use `.get(...)` instead of an `if` block

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
FURB142 Use of `set.add()` in a for loop

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
FURB148 `enumerate` index is unused, use `for x in y` instead

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
UP003 Use `str` instead of `type(...)`

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
UP004 Class inherits from `object`

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
UP008 Use `super()` instead of `super(__class__, self)`

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
UP009 UTF-8 encoding declaration is unnecessary

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
UP024 Replace aliased errors with `OSError`

Verified

This commit was signed with the committer’s verified signature.
DimitriPapadopoulos Dimitri Papadopoulos Orfanos
UP034 Avoid extraneous parentheses
@DimitriPapadopoulos
Copy link
Contributor Author

Done

@sbesson
Copy link
Member

sbesson commented Jan 20, 2025

Thanks. A diff of the Java classes generated by the xsd-fu utility against the source files generated by the current HEAD of this repository revealed no functional change introduced by this PR. I am labelling it for inclusion in the nightly CI builds so that we can test all integration tests keep passing. We can then apply a formal round of code review.

Copy link
Member

@sbesson sbesson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I generated and compared the output of mvn clean generated-sources executed using all supported Python versions (3.9, 3.10, 3.11, 3.12) against the same files generated from the current HEAD of this repository using Python 3.12.
In all cases, diff -r showed no difference and diff -rs confirmed the files were identical.

Most of the changes are related to code formatting and/or also modernization of some of the Python code from this utility. I'll leave @melissalinkert to take a look for anything of potential concern. Overall no objection to getting this in.

@sbesson sbesson merged commit a3c7457 into ome:master Jan 22, 2025
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants