-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To reproduce the errors: ``` ruff check --select "N" black_it tests examples scripts ``` Some of the errors were fixed; other were ignored using the directives '# noqa: NXXX'. We decided to ignore those errors that would have required invasive changes throughout the codebase. For example, the model functions in examples/models have a positional parameter named 'N', which should be lowercase, but in other parts of the code the model functions were called with "N" as keyworded parameter. Hence, renaming N to n would have required a change to the function calls, replacing 'N=' with 'n='. The same strategy was applied for function names that were used in many parts of the project. Instead, many narrow-scoped variables were modified properly as suggested by the Ruff errors.
- Loading branch information
1 parent
e1675cf
commit 7568789
Showing
27 changed files
with
207 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.