Skip to content

Commit

Permalink
small linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Starr committed May 24, 2023
1 parent 930c81a commit c485a77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
poetry install --with dev
- name: Lint with flake8
run: |
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
poetry run flake8 ./volumentations --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Test with pytest
run: |
pytest
2 changes: 2 additions & 0 deletions volumentations/augmentations/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
from scipy.ndimage import gaussian_filter
from scipy.ndimage import map_coordinates
from warnings import warn
from itertools import product


MAX_VALUES_BY_DTYPE = {
np.dtype("uint8"): 255,
Expand Down

0 comments on commit c485a77

Please sign in to comment.