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 "F" black_it tests examples scripts ``` This will first give the following error: ``` examples/models/economics/brock_hommes.py:62:5: F841 [*] Local variable `pStar` is assigned to but never used ``` once fixed, running the same command again will give the following error: ``` examples/models/economics/brock_hommes.py:54:5: F841 [*] Local variable `div` is assigned to but never used ``` Once fixed the last error, pyflakes does not detect any other issue.
- Loading branch information