Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ jobs:
poetry run ruff version
# Check the source file, ignore type annotations (ANN) for now.
poetry run ruff check numpy_financial/ --ignore F403 --select E,F,B,I
# Check the test file
poetry run ruff check tests/ --select E,F,B,I
# Check the test and benchmark files
poetry run ruff check tests/ benchmarks/ --select E,F,B,I
1 change: 1 addition & 0 deletions benchmarks/benchmarks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import numpy as np

import numpy_financial as npf


Expand Down